In [4]:
!pip install folium
Collecting folium
  Downloading folium-0.12.1.post1-py2.py3-none-any.whl (95 kB)
Requirement already satisfied: numpy in c:\users\e.daboner\anaconda3\lib\site-packages (from folium) (1.20.1)
Requirement already satisfied: jinja2>=2.9 in c:\users\e.daboner\anaconda3\lib\site-packages (from folium) (2.11.3)
Requirement already satisfied: requests in c:\users\e.daboner\anaconda3\lib\site-packages (from folium) (2.25.1)
Collecting branca>=0.3.0
  Downloading branca-0.5.0-py3-none-any.whl (24 kB)
Requirement already satisfied: MarkupSafe>=0.23 in c:\users\e.daboner\anaconda3\lib\site-packages (from jinja2>=2.9->folium) (1.1.1)
Requirement already satisfied: certifi>=2017.4.17 in c:\users\e.daboner\anaconda3\lib\site-packages (from requests->folium) (2020.12.5)
Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\users\e.daboner\anaconda3\lib\site-packages (from requests->folium) (1.26.4)
Requirement already satisfied: idna<3,>=2.5 in c:\users\e.daboner\anaconda3\lib\site-packages (from requests->folium) (2.10)
Requirement already satisfied: chardet<5,>=3.0.2 in c:\users\e.daboner\anaconda3\lib\site-packages (from requests->folium) (4.0.0)
Installing collected packages: branca, folium
Successfully installed branca-0.5.0 folium-0.12.1.post1
In [24]:
!pip install polyline
Collecting polyline
  Downloading polyline-1.4.0-py2.py3-none-any.whl (4.4 kB)
Requirement already satisfied: six>=1.8.0 in c:\users\e.daboner\anaconda3\lib\site-packages (from polyline) (1.15.0)
Installing collected packages: polyline
Successfully installed polyline-1.4.0
In [25]:
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
import numpy as np
import folium
import requests
import polyline
dataFrame=pd.read_csv('c:/datasets/RAS2.csv')
In [2]:
dataFrame.head()
Out[2]:
Time UTC Time Lap GPS_Update GPS_Delay Latitude Longitude Altitude (m) Altitude (ft) Speed (Km/h) Heading Accuracy (m) Accel X Accel Y Accel Z Brake (calculated) Barometric Pressure (kPa) Pressure Altitude (m)
0 0.000 1659024166 0 1 0 9.051417 7.491423 485.6 1593 0.3 -1.0 5.3 0.56 -1.05 1.04 1 95.55 492.2
1 0.006 1659024166 0 0 0 9.051417 7.491423 485.6 1593 0.3 -1.0 5.3 0.53 -1.05 1.04 1 95.55 492.2
2 0.053 1659024166 0 0 0 9.051417 7.491423 485.6 1593 0.3 -1.0 5.3 0.56 -1.04 1.10 1 95.55 492.2
3 0.104 1659024166 0 0 0 9.051417 7.491423 485.6 1593 0.3 -1.0 5.3 0.56 -1.04 1.10 1 95.55 492.2
4 0.154 1659024166 0 0 0 9.051417 7.491423 485.6 1593 0.3 -1.0 5.3 0.59 -1.04 1.14 1 95.55 492.2
In [3]:
dataFrame.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 18246 entries, 0 to 18245
Data columns (total 18 columns):
 #   Column                     Non-Null Count  Dtype  
---  ------                     --------------  -----  
 0   Time                       18246 non-null  float64
 1   UTC Time                   18246 non-null  int64  
 2   Lap                        18246 non-null  int64  
 3   GPS_Update                 18246 non-null  int64  
 4   GPS_Delay                  18246 non-null  int64  
 5   Latitude                   18246 non-null  float64
 6   Longitude                  18246 non-null  float64
 7   Altitude (m)               18246 non-null  float64
 8   Altitude (ft)              18246 non-null  int64  
 9   Speed (Km/h)               18246 non-null  float64
 10  Heading                    18246 non-null  float64
 11  Accuracy (m)               18246 non-null  float64
 12  Accel X                    18246 non-null  float64
 13  Accel Y                    18246 non-null  float64
 14  Accel Z                    18246 non-null  float64
 15  Brake (calculated)         18246 non-null  int64  
 16  Barometric Pressure (kPa)  18246 non-null  float64
 17  Pressure Altitude (m)      18246 non-null  float64
dtypes: float64(12), int64(6)
memory usage: 2.5 MB
In [4]:
newDf=dataFrame.drop(index=dataFrame.index[0::2])
newDf
newDf2=newDf.reset_index()
newDf3=newDf2.drop(index=newDf2.index[0::2])
newDf4=newDf3.reset_index()
newDf5=newDf4.drop(index=newDf4.index[0::2])
newDf5.head()
Out[4]:
level_0 index Time UTC Time Lap GPS_Update GPS_Delay Latitude Longitude Altitude (m) Altitude (ft) Speed (Km/h) Heading Accuracy (m) Accel X Accel Y Accel Z Brake (calculated) Barometric Pressure (kPa) Pressure Altitude (m)
1 3 7 0.305 1659024166 0 0 0 9.051417 7.491423 485.6 1593 0.3 -1.0 5.3 0.59 -1.05 1.13 1 95.55 492.2
3 7 15 0.696 1659024167 0 0 0 9.051419 7.491430 485.5 1593 1.2 -1.0 5.2 0.59 -1.04 1.09 1 95.55 492.3
5 11 23 1.099 1659024167 0 0 0 9.051419 7.491430 485.5 1593 1.2 -1.0 5.2 0.55 -1.03 1.09 1 95.55 492.3
7 15 31 1.499 1659024167 0 0 0 9.051419 7.491430 485.5 1593 1.2 -1.0 5.2 0.56 -1.06 1.11 1 95.55 492.3
9 19 39 1.901 1659024168 0 0 0 9.051417 7.491431 485.4 1592 0.6 -1.0 5.1 0.56 -1.04 1.12 1 95.55 492.3
In [5]:
newDf5.shape
Out[5]:
(2280, 20)
In [6]:
locations=newDf5[["Latitude", "Longitude"]]
print(locations)

locationslist=locations.values.tolist()

print(len(locationslist))

print()
print(locationslist)

print(locationslist[9])
      Latitude  Longitude
1     9.051417   7.491423
3     9.051419   7.491430
5     9.051419   7.491430
7     9.051419   7.491430
9     9.051417   7.491431
...        ...        ...
4551  9.069009   7.446148
4553  9.069009   7.446148
4555  9.068983   7.446154
4557  9.068983   7.446154
4559  9.068983   7.446154

[2280 rows x 2 columns]
2280

[[9.0514168, 7.4914232], [9.0514185, 7.4914299], [9.0514185, 7.4914299], [9.0514185, 7.4914299], [9.0514175, 7.4914307], [9.0514175, 7.4914307], [9.051424, 7.4914326], [9.051424, 7.4914326], [9.051424, 7.4914326], [9.0514302, 7.4914384], [9.0514302, 7.4914384], [9.0514302, 7.4914384], [9.0514302, 7.4914384], [9.0514302, 7.4914384], [9.0514302, 7.4914384], [9.0514302, 7.4914384], [9.0514302, 7.4914384], [9.0514302, 7.4914384], [9.0514302, 7.4914384], [9.0514302, 7.4914384], [9.0514302, 7.4914384], [9.0514302, 7.4914384], [9.0514302, 7.4914384], [9.0514302, 7.4914384], [9.0514234, 7.4914423], [9.0514234, 7.4914423], [9.0514287, 7.4914397], [9.0514287, 7.4914397], [9.0514287, 7.4914397], [9.0514505, 7.4914246], [9.0514505, 7.4914246], [9.0514765, 7.4914074], [9.0514765, 7.4914074], [9.0514765, 7.4914074], [9.051509, 7.4913889], [9.051509, 7.4913889], [9.0515476, 7.491363], [9.0515476, 7.491363], [9.0515476, 7.491363], [9.0515904, 7.4913292], [9.0515904, 7.4913292], [9.0516426, 7.4912875], [9.0516426, 7.4912875], [9.0516426, 7.4912875], [9.0516987, 7.4912443], [9.0516987, 7.4912443], [9.0516987, 7.4912443], [9.05177, 7.4911955], [9.05177, 7.4911955], [9.0518454, 7.491147], [9.0518454, 7.491147], [9.0518454, 7.491147], [9.0519279, 7.4910985], [9.0519279, 7.4910985], [9.0520144, 7.4910456], [9.0520144, 7.4910456], [9.0520144, 7.4910456], [9.0521115, 7.490992], [9.0521115, 7.490992], [9.0521973, 7.4909399], [9.0521973, 7.4909399], [9.0521973, 7.4909399], [9.0523069, 7.4908838], [9.0523069, 7.4908838], [9.0523931, 7.490843], [9.0523931, 7.490843], [9.0523931, 7.490843], [9.0524741, 7.4908001], [9.0524741, 7.4908001], [9.0525549, 7.4907522], [9.0525549, 7.4907522], [9.0525549, 7.4907522], [9.0526372, 7.4907045], [9.0526372, 7.4907045], [9.052712, 7.4906493], [9.052712, 7.4906493], [9.052712, 7.4906493], [9.0527846, 7.4905935], [9.0527846, 7.4905935], [9.05286, 7.4905333], [9.05286, 7.4905333], [9.05286, 7.4905333], [9.0529335, 7.4904775], [9.0529335, 7.4904775], [9.0529335, 7.4904775], [9.0530076, 7.49042], [9.0530076, 7.49042], [9.0530835, 7.4903629], [9.0530835, 7.4903629], [9.0530835, 7.4903629], [9.0531676, 7.490305], [9.0531676, 7.490305], [9.0532574, 7.4902505], [9.0532574, 7.4902505], [9.0532574, 7.4902505], [9.0533526, 7.490196], [9.0533526, 7.490196], [9.0534482, 7.490135], [9.0534482, 7.490135], [9.0534482, 7.490135], [9.0535456, 7.4900822], [9.0535456, 7.4900822], [9.0536395, 7.4900215], [9.0536395, 7.4900215], [9.0536395, 7.4900215], [9.053729, 7.4899653], [9.053729, 7.4899653], [9.0538162, 7.489908], [9.0538162, 7.489908], [9.0538162, 7.489908], [9.0539022, 7.4898483], [9.0539022, 7.4898483], [9.0539022, 7.4898483], [9.0539751, 7.4897955], [9.0539751, 7.4897955], [9.0540451, 7.4897471], [9.0540451, 7.4897471], [9.0540451, 7.4897471], [9.0541066, 7.4897031], [9.0541066, 7.4897031], [9.0541646, 7.489664], [9.0541646, 7.489664], [9.0541646, 7.489664], [9.0542222, 7.489626], [9.0542222, 7.489626], [9.0542857, 7.4895797], [9.0542857, 7.4895797], [9.0542857, 7.4895797], [9.0543525, 7.4895353], [9.0543525, 7.4895353], [9.0544192, 7.4894887], [9.0544192, 7.4894887], [9.0544192, 7.4894887], [9.0544985, 7.4894374], [9.0544985, 7.4894374], [9.0545803, 7.4893846], [9.0545803, 7.4893846], [9.0545803, 7.4893846], [9.0546588, 7.4893305], [9.0546588, 7.4893305], [9.0547447, 7.4892735], [9.0547447, 7.4892735], [9.0547447, 7.4892735], [9.0548363, 7.4892157], [9.0548363, 7.4892157], [9.054932, 7.4891571], [9.054932, 7.4891571], [9.054932, 7.4891571], [9.0550278, 7.4890944], [9.0550278, 7.4890944], [9.0551296, 7.4890309], [9.0551296, 7.4890309], [9.0551296, 7.4890309], [9.0552322, 7.4889658], [9.0552322, 7.4889658], [9.0552322, 7.4889658], [9.0553359, 7.4889018], [9.0553359, 7.4889018], [9.0554435, 7.4888411], [9.0554435, 7.4888411], [9.0554435, 7.4888411], [9.0555514, 7.4887781], [9.0555514, 7.4887781], [9.0556555, 7.488716], [9.0556555, 7.488716], [9.0556555, 7.488716], [9.0557613, 7.4886503], [9.0557613, 7.4886503], [9.0558709, 7.488585], [9.0558709, 7.488585], [9.0558709, 7.488585], [9.0559827, 7.4885161], [9.0559827, 7.4885161], [9.0560939, 7.4884491], [9.0560939, 7.4884491], [9.0560939, 7.4884491], [9.0562024, 7.4883831], [9.0562024, 7.4883831], [9.0563061, 7.488318], [9.0563061, 7.488318], [9.0563061, 7.488318], [9.0564052, 7.4882638], [9.0564052, 7.4882638], [9.0565052, 7.4882119], [9.0565052, 7.4882119], [9.0565052, 7.4882119], [9.0565951, 7.4881642], [9.0565951, 7.4881642], [9.0566691, 7.4881174], [9.0566691, 7.4881174], [9.0566691, 7.4881174], [9.0567265, 7.4880771], [9.0567265, 7.4880771], [9.056779, 7.4880402], [9.056779, 7.4880402], [9.056779, 7.4880402], [9.0568281, 7.488003], [9.0568281, 7.488003], [9.056872, 7.4879725], [9.056872, 7.4879725], [9.056872, 7.4879725], [9.0569047, 7.4879508], [9.0569047, 7.4879508], [9.0569194, 7.48794], [9.0569194, 7.48794], [9.0569194, 7.48794], [9.0569196, 7.4879398], [9.0569196, 7.4879398], [9.0569136, 7.4879421], [9.0569136, 7.4879421], [9.0569136, 7.4879421], [9.0569114, 7.487944], [9.0569114, 7.487944], [9.0569114, 7.487944], [9.056915, 7.4879454], [9.056915, 7.4879454], [9.0569147, 7.4879455], [9.0569147, 7.4879455], [9.0569147, 7.4879455], [9.0569167, 7.4879411], [9.0569167, 7.4879411], [9.0569165, 7.4879357], [9.0569165, 7.4879357], [9.0569165, 7.4879357], [9.0569145, 7.487935], [9.0569145, 7.487935], [9.0569123, 7.4879337], [9.0569123, 7.4879337], [9.0569123, 7.4879337], [9.05691, 7.4879343], [9.05691, 7.4879343], [9.05691, 7.4879343], [9.05691, 7.4879343], [9.05691, 7.4879343], [9.05691, 7.4879343], [9.05691, 7.4879343], [9.05691, 7.4879343], [9.05691, 7.4879343], [9.05691, 7.4879343], [9.05691, 7.4879343], [9.05691, 7.4879343], [9.05691, 7.4879343], [9.05691, 7.4879343], [9.05691, 7.4879343], [9.0569024, 7.4879289], [9.0569024, 7.4879289], [9.0569024, 7.4879289], [9.056902, 7.4879283], [9.056902, 7.4879283], [9.056902, 7.4879283], [9.056902, 7.4879283], [9.056902, 7.4879283], [9.0569023, 7.48793], [9.0569023, 7.48793], [9.056902, 7.48793], [9.056902, 7.48793], [9.056902, 7.48793], [9.056902, 7.48793], [9.056902, 7.48793], [9.056902, 7.48793], [9.056902, 7.48793], [9.056902, 7.48793], [9.056902, 7.48793], [9.056902, 7.48793], [9.056902, 7.48793], [9.056902, 7.48793], [9.056902, 7.48793], [9.056902, 7.48793], [9.056902, 7.48793], [9.056902, 7.487929], [9.056902, 7.487929], [9.056902, 7.487929], [9.0569049, 7.4879274], [9.0569049, 7.4879274], [9.0569103, 7.4879249], [9.0569103, 7.4879249], [9.0569103, 7.4879249], [9.0569119, 7.4879244], [9.0569119, 7.4879244], [9.0569149, 7.4879234], [9.0569149, 7.4879234], [9.0569149, 7.4879234], [9.0569152, 7.4879234], [9.0569152, 7.4879234], [9.0569153, 7.4879232], [9.0569153, 7.4879232], [9.0569153, 7.4879232], [9.0569153, 7.4879232], [9.0569153, 7.4879232], [9.0569153, 7.4879232], [9.0569153, 7.4879232], [9.0569153, 7.4879232], [9.056918, 7.4879296], [9.056918, 7.4879296], [9.0569195, 7.4879295], [9.0569195, 7.4879295], [9.0569195, 7.4879295], [9.056919, 7.4879279], [9.056919, 7.4879279], [9.0569187, 7.4879276], [9.0569187, 7.4879276], [9.0569187, 7.4879276], [9.0569192, 7.4879279], [9.0569192, 7.4879279], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569198, 7.487929], [9.0569248, 7.4879392], [9.0569248, 7.4879392], [9.0569248, 7.4879392], [9.056931, 7.4879362], [9.056931, 7.4879362], [9.0569377, 7.4879312], [9.0569377, 7.4879312], [9.0569377, 7.4879312], [9.0569455, 7.4879254], [9.0569455, 7.4879254], [9.0569455, 7.4879254], [9.0569597, 7.4879154], [9.0569597, 7.4879154], [9.0569769, 7.4879025], [9.0569769, 7.4879025], [9.0569769, 7.4879025], [9.0569896, 7.4878945], [9.0569896, 7.4878945], [9.0570327, 7.4878678], [9.0570327, 7.4878678], [9.0570327, 7.4878678], [9.0570659, 7.4878479], [9.0570659, 7.4878479], [9.0570958, 7.4878321], [9.0570958, 7.4878321], [9.0570958, 7.4878321], [9.0571169, 7.4878194], [9.0571169, 7.4878194], [9.0571285, 7.4878104], [9.0571285, 7.4878104], [9.0571285, 7.4878104], [9.0571336, 7.4878082], [9.0571336, 7.4878082], [9.0571411, 7.4878052], [9.0571411, 7.4878052], [9.0571411, 7.4878052], [9.0571529, 7.4878011], [9.0571529, 7.4878011], [9.0571662, 7.4877963], [9.0571662, 7.4877963], [9.0571662, 7.4877963], [9.0571707, 7.4877967], [9.0571707, 7.4877967], [9.0571763, 7.4877964], [9.0571763, 7.4877964], [9.0571763, 7.4877964], [9.0571891, 7.487796], [9.0571891, 7.487796], [9.0572008, 7.4877989], [9.0572008, 7.4877989], [9.0572008, 7.4877989], [9.0572022, 7.4878006], [9.0572022, 7.4878006], [9.0572075, 7.4878031], [9.0572075, 7.4878031], [9.0572075, 7.4878031], [9.0572129, 7.4878074], [9.0572129, 7.4878074], [9.0572186, 7.4878089], [9.0572186, 7.4878089], [9.0572186, 7.4878089], [9.0572231, 7.4878108], [9.0572231, 7.4878108], [9.0572231, 7.4878108], [9.0572311, 7.487815], [9.0572311, 7.487815], [9.05724, 7.4878213], [9.05724, 7.4878213], [9.05724, 7.4878213], [9.0572492, 7.4878282], [9.0572492, 7.4878282], [9.0572623, 7.4878421], [9.0572623, 7.4878421], [9.0572623, 7.4878421], [9.0572833, 7.4878654], [9.0572833, 7.4878654], [9.0573047, 7.4879025], [9.0573047, 7.4879025], [9.0573047, 7.4879025], [9.0573301, 7.4879365], [9.0573301, 7.4879365], [9.0573528, 7.4879712], [9.0573528, 7.4879712], [9.0573528, 7.4879712], [9.0573759, 7.488007], [9.0573759, 7.488007], [9.0574006, 7.4880478], [9.0574006, 7.4880478], [9.0574006, 7.4880478], [9.0574231, 7.4880896], [9.0574231, 7.4880896], [9.057447, 7.4881346], [9.057447, 7.4881346], [9.057447, 7.4881346], [9.0574673, 7.4881693], [9.0574673, 7.4881693], [9.0574854, 7.4881944], [9.0574854, 7.4881944], [9.0574854, 7.4881944], [9.0574972, 7.4882138], [9.0574972, 7.4882138], [9.0574972, 7.4882138], [9.0575121, 7.4882372], [9.0575121, 7.4882372], [9.0575284, 7.4882616], [9.0575284, 7.4882616], [9.0575284, 7.4882616], [9.0575453, 7.4882916], [9.0575453, 7.4882916], [9.0575593, 7.4883144], [9.0575593, 7.4883144], [9.0575593, 7.4883144], [9.0575703, 7.4883296], [9.0575703, 7.4883296], [9.05758, 7.4883425], [9.05758, 7.4883425], [9.05758, 7.4883425], [9.05758, 7.4883472], [9.05758, 7.4883472], [9.05758, 7.4883472], [9.05758, 7.4883472], [9.05758, 7.4883472], [9.0576105, 7.4883903], [9.0576105, 7.4883903], [9.0576236, 7.4884073], [9.0576236, 7.4884073], [9.0576236, 7.4884073], [9.0576329, 7.48842], [9.0576329, 7.48842], [9.0576349, 7.4884213], [9.0576349, 7.4884213], [9.0576349, 7.4884213], [9.0576396, 7.4884229], [9.0576396, 7.4884229], [9.0576465, 7.4884265], [9.0576465, 7.4884265], [9.0576465, 7.4884265], [9.0576497, 7.48843], [9.0576497, 7.48843], [9.0576567, 7.488438], [9.0576567, 7.488438], [9.0576567, 7.488438], [9.0576713, 7.4884566], [9.0576713, 7.4884566], [9.0576762, 7.4884652], [9.0576762, 7.4884652], [9.0576762, 7.4884652], [9.0576828, 7.4884775], [9.0576828, 7.4884775], [9.0577122, 7.4885213], [9.0577122, 7.4885213], [9.0577122, 7.4885213], [9.0577302, 7.4885499], [9.0577302, 7.4885499], [9.0577438, 7.4885836], [9.0577438, 7.4885836], [9.0577438, 7.4885836], [9.0577571, 7.4886095], [9.0577571, 7.4886095], [9.05779, 7.4886447], [9.05779, 7.4886447], [9.05779, 7.4886447], [9.0578293, 7.4886807], [9.0578293, 7.4886807], [9.0578293, 7.4886807], [9.0578554, 7.488705], [9.0578554, 7.488705], [9.057875, 7.4887249], [9.057875, 7.4887249], [9.057875, 7.4887249], [9.0578956, 7.4887475], [9.0578956, 7.4887475], [9.0579129, 7.4887694], [9.0579129, 7.4887694], [9.0579129, 7.4887694], [9.0579288, 7.4887878], [9.0579288, 7.4887878], [9.0579372, 7.488801], [9.0579372, 7.488801], [9.0579372, 7.488801], [9.0579405, 7.4888038], [9.0579405, 7.4888038], [9.0579472, 7.4888167], [9.0579472, 7.4888167], [9.0579472, 7.4888167], [9.0579704, 7.4888485], [9.0579704, 7.4888485], [9.0579704, 7.4888485], [9.0579917, 7.4888745], [9.0579917, 7.4888745], [9.058019, 7.4889078], [9.058019, 7.4889078], [9.058019, 7.4889078], [9.0580459, 7.4889425], [9.0580459, 7.4889425], [9.0580705, 7.4889783], [9.0580705, 7.4889783], [9.0580705, 7.4889783], [9.0580903, 7.4890103], [9.0580903, 7.4890103], [9.0581079, 7.4890391], [9.0581079, 7.4890391], [9.0581079, 7.4890391], [9.0581264, 7.4890655], [9.0581264, 7.4890655], [9.0581446, 7.4890972], [9.0581446, 7.4890972], [9.0581446, 7.4890972], [9.0581723, 7.4891421], [9.0581723, 7.4891421], [9.0582043, 7.489193], [9.0582043, 7.489193], [9.0582043, 7.489193], [9.0582392, 7.4892475], [9.0582392, 7.4892475], [9.0582392, 7.4892475], [9.0582668, 7.4892934], [9.0582668, 7.4892934], [9.0582941, 7.4893367], [9.0582941, 7.4893367], [9.0582941, 7.4893367], [9.0583161, 7.4893745], [9.0583161, 7.4893745], [9.0583359, 7.4894065], [9.0583359, 7.4894065], [9.0583359, 7.4894065], [9.0583584, 7.4894391], [9.0583584, 7.4894391], [9.0583814, 7.4894708], [9.0583814, 7.4894708], [9.0583814, 7.4894708], [9.0584036, 7.4895021], [9.0584036, 7.4895021], [9.0584279, 7.4895355], [9.0584279, 7.4895355], [9.0584279, 7.4895355], [9.0584495, 7.4895694], [9.0584495, 7.4895694], [9.0584715, 7.4896037], [9.0584715, 7.4896037], [9.0584715, 7.4896037], [9.0584921, 7.4896384], [9.0584921, 7.4896384], [9.0585018, 7.4896599], [9.0585018, 7.4896599], [9.0585018, 7.4896599], [9.0585046, 7.4896681], [9.0585046, 7.4896681], [9.0585059, 7.489672], [9.0585059, 7.489672], [9.0585059, 7.489672], [9.0585113, 7.489677], [9.0585113, 7.489677], [9.0585176, 7.4896883], [9.0585176, 7.4896883], [9.0585176, 7.4896883], [9.058525, 7.4896989], [9.058525, 7.4896989], [9.058525, 7.4896989], [9.0585312, 7.4897098], [9.0585312, 7.4897098], [9.058536, 7.4897195], [9.058536, 7.4897195], [9.058536, 7.4897195], [9.0585386, 7.4897268], [9.0585386, 7.4897268], [9.0585536, 7.4897533], [9.0585536, 7.4897533], [9.0585536, 7.4897533], [9.0585639, 7.4897794], [9.0585639, 7.4897794], [9.0585738, 7.4898094], [9.0585738, 7.4898094], [9.0585738, 7.4898094], [9.0585859, 7.4898492], [9.0585859, 7.4898492], [9.0585984, 7.4898962], [9.0585984, 7.4898962], [9.0585984, 7.4898962], [9.0586093, 7.4899401], [9.0586093, 7.4899401], [9.0586261, 7.4899851], [9.0586261, 7.4899851], [9.0586261, 7.4899851], [9.0586451, 7.4900271], [9.0586451, 7.4900271], [9.0586693, 7.4900706], [9.0586693, 7.4900706], [9.0586693, 7.4900706], [9.0586981, 7.4901098], [9.0586981, 7.4901098], [9.0587233, 7.4901475], [9.0587233, 7.4901475], [9.0587233, 7.4901475], [9.0587474, 7.4901859], [9.0587474, 7.4901859], [9.0587689, 7.4902188], [9.0587689, 7.4902188], [9.0587689, 7.4902188], [9.0587853, 7.4902495], [9.0587853, 7.4902495], [9.0588032, 7.4902809], [9.0588032, 7.4902809], [9.0588032, 7.4902809], [9.0588198, 7.4903101], [9.0588198, 7.4903101], [9.0588365, 7.4903406], [9.0588365, 7.4903406], [9.0588365, 7.4903406], [9.0588487, 7.4903643], [9.0588487, 7.4903643], [9.0588567, 7.490377], [9.0588567, 7.490377], [9.0588567, 7.490377], [9.0588593, 7.4903817], [9.0588593, 7.4903817], [9.0588612, 7.4903865], [9.0588612, 7.4903865], [9.0588612, 7.4903865], [9.0588636, 7.4903927], [9.0588636, 7.4903927], [9.0588769, 7.4904138], [9.0588769, 7.4904138], [9.0588769, 7.4904138], [9.0588895, 7.4904341], [9.0588895, 7.4904341], [9.0589068, 7.4904572], [9.0589068, 7.4904572], [9.0589068, 7.4904572], [9.0589215, 7.490482], [9.0589215, 7.490482], [9.058934, 7.490504], [9.058934, 7.490504], [9.058934, 7.490504], [9.0589478, 7.4905219], [9.0589478, 7.4905219], [9.058959, 7.4905408], [9.058959, 7.4905408], [9.058959, 7.4905408], [9.0589602, 7.4905469], [9.0589602, 7.4905469], [9.0589763, 7.4905747], [9.0589763, 7.4905747], [9.0589763, 7.4905747], [9.0589871, 7.4905897], [9.0589871, 7.4905897], [9.0589871, 7.4905897], [9.0589942, 7.4906001], [9.0589942, 7.4906001], [9.0589979, 7.490599], [9.0589979, 7.490599], [9.0589979, 7.490599], [9.0590048, 7.4906066], [9.0590048, 7.4906066], [9.0590141, 7.4906206], [9.0590141, 7.4906206], [9.0590141, 7.4906206], [9.0590219, 7.4906296], [9.0590219, 7.4906296], [9.0590298, 7.4906379], [9.0590298, 7.4906379], [9.0590298, 7.4906379], [9.0590423, 7.4906536], [9.0590423, 7.4906536], [9.0590553, 7.4906688], [9.0590553, 7.4906688], [9.0590553, 7.4906688], [9.0590717, 7.4906904], [9.0590717, 7.4906904], [9.0590717, 7.4906904], [9.0590807, 7.4906952], [9.0590807, 7.4906952], [9.05909, 7.4907081], [9.05909, 7.4907081], [9.05909, 7.4907081], [9.0591015, 7.4907319], [9.0591015, 7.4907319], [9.0591124, 7.4907483], [9.0591124, 7.4907483], [9.0591124, 7.4907483], [9.059122, 7.4907626], [9.059122, 7.4907626], [9.059135, 7.4907758], [9.059135, 7.4907758], [9.059135, 7.4907758], [9.0591462, 7.4907947], [9.0591462, 7.4907947], [9.059152, 7.4908083], [9.059152, 7.4908083], [9.059152, 7.4908083], [9.0591603, 7.4908185], [9.0591603, 7.4908185], [9.0591603, 7.4908185], [9.0591625, 7.4908214], [9.0591625, 7.4908214], [9.0591651, 7.49083], [9.0591651, 7.49083], [9.0591651, 7.49083], [9.0591717, 7.4908452], [9.0591717, 7.4908452], [9.0591731, 7.490867], [9.0591731, 7.490867], [9.0591731, 7.490867], [9.0591724, 7.4908827], [9.0591724, 7.4908827], [9.0591656, 7.4908842], [9.0591656, 7.4908842], [9.0591656, 7.4908842], [9.0591603, 7.4908942], [9.0591603, 7.4908942], [9.0591633, 7.4909217], [9.0591633, 7.4909217], [9.0591633, 7.4909217], [9.0591696, 7.4909391], [9.0591696, 7.4909391], [9.0591721, 7.4909527], [9.0591721, 7.4909527], [9.0591721, 7.4909527], [9.0591793, 7.4909716], [9.0591793, 7.4909716], [9.0591817, 7.490998], [9.0591817, 7.490998], [9.0591817, 7.490998], [9.0591858, 7.4910141], [9.0591858, 7.4910141], [9.0592021, 7.4910283], [9.0592021, 7.4910283], [9.0592021, 7.4910283], [9.0592143, 7.4910508], [9.0592143, 7.4910508], [9.0592143, 7.4910508], [9.0592247, 7.4910694], [9.0592247, 7.4910694], [9.0592339, 7.4910892], [9.0592339, 7.4910892], [9.0592339, 7.4910892], [9.0592491, 7.4911047], [9.0592491, 7.4911047], [9.0592646, 7.4911178], [9.0592646, 7.4911178], [9.0592646, 7.4911178], [9.0592704, 7.4911281], [9.0592704, 7.4911281], [9.0592693, 7.4911426], [9.0592693, 7.4911426], [9.0592693, 7.4911426], [9.0592651, 7.4911493], [9.0592651, 7.4911493], [9.0592664, 7.4911608], [9.0592664, 7.4911608], [9.0592664, 7.4911608], [9.0592687, 7.4911675], [9.0592687, 7.4911675], [9.0592741, 7.491176], [9.0592741, 7.491176], [9.0592741, 7.491176], [9.0592778, 7.4911864], [9.0592778, 7.4911864], [9.0592778, 7.4911864], [9.0592852, 7.4911945], [9.0592852, 7.4911945], [9.0593136, 7.4912036], [9.0593136, 7.4912036], [9.0593136, 7.4912036], [9.05933, 7.4912097], [9.05933, 7.4912097], [9.0593446, 7.4912174], [9.0593446, 7.4912174], [9.0593446, 7.4912174], [9.0593604, 7.4912241], [9.0593604, 7.4912241], [9.0593845, 7.4912287], [9.0593845, 7.4912287], [9.0593845, 7.4912287], [9.0594196, 7.4912219], [9.0594196, 7.4912219], [9.0594593, 7.491213], [9.0594593, 7.491213], [9.0594593, 7.491213], [9.0594858, 7.4912106], [9.0594858, 7.4912106], [9.0595235, 7.4911986], [9.0595235, 7.4911986], [9.0595235, 7.4911986], [9.0595606, 7.4911942], [9.0595606, 7.4911942], [9.0596166, 7.4911833], [9.0596166, 7.4911833], [9.0596166, 7.4911833], [9.0596768, 7.4911642], [9.0596768, 7.4911642], [9.0597409, 7.491136], [9.0597409, 7.491136], [9.0597409, 7.491136], [9.0598134, 7.4910984], [9.0598134, 7.4910984], [9.0599091, 7.4910563], [9.0599091, 7.4910563], [9.0599091, 7.4910563], [9.0600107, 7.4910055], [9.0600107, 7.4910055], [9.0600808, 7.4909148], [9.0600808, 7.4909148], [9.0600808, 7.4909148], [9.0601844, 7.4908411], [9.0601844, 7.4908411], [9.0602927, 7.4907747], [9.0602927, 7.4907747], [9.0602927, 7.4907747], [9.0603988, 7.4907072], [9.0603988, 7.4907072], [9.0603988, 7.4907072], [9.0605116, 7.4906489], [9.0605116, 7.4906489], [9.0606328, 7.4905995], [9.0606328, 7.4905995], [9.0606328, 7.4905995], [9.0607493, 7.4905255], [9.0607493, 7.4905255], [9.0608662, 7.490454], [9.0608662, 7.490454], [9.0608662, 7.490454], [9.0609789, 7.4903844], [9.0609789, 7.4903844], [9.0610921, 7.4903201], [9.0610921, 7.4903201], [9.0610921, 7.4903201], [9.0612009, 7.490254], [9.0612009, 7.490254], [9.0613062, 7.4901843], [9.0613062, 7.4901843], [9.0613062, 7.4901843], [9.0614184, 7.4901177], [9.0614184, 7.4901177], [9.0615299, 7.49005], [9.0615299, 7.49005], [9.0615299, 7.49005], [9.0616313, 7.4899816], [9.0616313, 7.4899816], [9.0617264, 7.4899146], [9.0617264, 7.4899146], [9.0617264, 7.4899146], [9.0618175, 7.4898547], [9.0618175, 7.4898547], [9.0619063, 7.4898001], [9.0619063, 7.4898001], [9.0619063, 7.4898001], [9.0619939, 7.4897424], [9.0619939, 7.4897424], [9.0620801, 7.4896839], [9.0620801, 7.4896839], [9.0620801, 7.4896839], [9.0621694, 7.4896263], [9.0621694, 7.4896263], [9.0622637, 7.4895675], [9.0622637, 7.4895675], [9.0622637, 7.4895675], [9.0623609, 7.4894992], [9.0623609, 7.4894992], [9.0623609, 7.4894992], [9.0624653, 7.4894302], [9.0624653, 7.4894302], [9.0625733, 7.4893596], [9.0625733, 7.4893596], [9.0625733, 7.4893596], [9.0626843, 7.4892892], [9.0626843, 7.4892892], [9.0627983, 7.4892158], [9.0627983, 7.4892158], [9.0627983, 7.4892158], [9.0629132, 7.4891433], [9.0629132, 7.4891433], [9.0630314, 7.4890744], [9.0630314, 7.4890744], [9.0630314, 7.4890744], [9.0631539, 7.4890004], [9.0631539, 7.4890004], [9.0632782, 7.4889269], [9.0632782, 7.4889269], [9.0632782, 7.4889269], [9.0634102, 7.4888522], [9.0634102, 7.4888522], [9.0635486, 7.4887828], [9.0635486, 7.4887828], [9.0635486, 7.4887828], [9.0636868, 7.4887115], [9.0636868, 7.4887115], [9.0638224, 7.4886434], [9.0638224, 7.4886434], [9.0638224, 7.4886434], [9.063956, 7.4885819], [9.063956, 7.4885819], [9.063956, 7.4885819], [9.0640965, 7.4885224], [9.0640965, 7.4885224], [9.0642372, 7.4884692], [9.0642372, 7.4884692], [9.0642372, 7.4884692], [9.0643711, 7.4884159], [9.0643711, 7.4884159], [9.0644978, 7.4883678], [9.0644978, 7.4883678], [9.0644978, 7.4883678], [9.0646179, 7.4883266], [9.0646179, 7.4883266], [9.0647306, 7.4882867], [9.0647306, 7.4882867], [9.0647306, 7.4882867], [9.0648468, 7.4882492], [9.0648468, 7.4882492], [9.0648468, 7.4882492], [9.0649688, 7.4882129], [9.0649688, 7.4882129], [9.0650921, 7.4881765], [9.0650921, 7.4881765], [9.0650921, 7.4881765], [9.0652222, 7.4881492], [9.0652222, 7.4881492], [9.0653531, 7.4881144], [9.0653531, 7.4881144], [9.0653531, 7.4881144], [9.0654932, 7.4880815], [9.0654932, 7.4880815], [9.0656365, 7.4880477], [9.0656365, 7.4880477], [9.0656365, 7.4880477], [9.0657796, 7.4880126], [9.0657796, 7.4880126], [9.0659287, 7.4879793], [9.0659287, 7.4879793], [9.0659287, 7.4879793], [9.0660808, 7.4879492], [9.0660808, 7.4879492], [9.066234, 7.4879204], [9.066234, 7.4879204], [9.066234, 7.4879204], [9.0663897, 7.4878958], [9.0663897, 7.4878958], [9.0665454, 7.4878707], [9.0665454, 7.4878707], [9.0665454, 7.4878707], [9.0667017, 7.4878446], [9.0667017, 7.4878446], [9.0668591, 7.4878192], [9.0668591, 7.4878192], [9.0668591, 7.4878192], [9.0670146, 7.4877871], [9.0670146, 7.4877871], [9.0670146, 7.4877871], [9.0671691, 7.487754], [9.0671691, 7.487754], [9.0673304, 7.4877151], [9.0673304, 7.4877151], [9.0673304, 7.4877151], [9.0674957, 7.4876696], [9.0674957, 7.4876696], [9.0676607, 7.487615], [9.0676607, 7.487615], [9.0676607, 7.487615], [9.0678273, 7.4875504], [9.0678273, 7.4875504], [9.067991, 7.4874713], [9.067991, 7.4874713], [9.067991, 7.4874713], [9.0681498, 7.4873781], [9.0681498, 7.4873781], [9.0683064, 7.487265], [9.0683064, 7.487265], [9.0683064, 7.487265], [9.0684551, 7.4871385], [9.0684551, 7.4871385], [9.0685949, 7.4869973], [9.0685949, 7.4869973], [9.0685949, 7.4869973], [9.0687269, 7.4868491], [9.0687269, 7.4868491], [9.0688513, 7.4866873], [9.0688513, 7.4866873], [9.0688513, 7.4866873], [9.0689576, 7.4865102], [9.0689576, 7.4865102], [9.06905, 7.486323], [9.06905, 7.486323], [9.06905, 7.486323], [9.0691267, 7.4861229], [9.0691267, 7.4861229], [9.0691267, 7.4861229], [9.0691971, 7.4859231], [9.0691971, 7.4859231], [9.0692366, 7.4857125], [9.0692366, 7.4857125], [9.0692366, 7.4857125], [9.0692591, 7.4854963], [9.0692591, 7.4854963], [9.0692649, 7.4852776], [9.0692649, 7.4852776], [9.0692649, 7.4852776], [9.0692513, 7.4850637], [9.0692513, 7.4850637], [9.0692209, 7.484853], [9.0692209, 7.484853], [9.0692209, 7.484853], [9.069173, 7.4846491], [9.069173, 7.4846491], [9.0691082, 7.4844448], [9.0691082, 7.4844448], [9.0691082, 7.4844448], [9.0690333, 7.4842431], [9.0690333, 7.4842431], [9.0690333, 7.4842431], [9.0689523, 7.4840484], [9.0689523, 7.4840484], [9.0688701, 7.4838578], [9.0688701, 7.4838578], [9.0688701, 7.4838578], [9.0687898, 7.4836715], [9.0687898, 7.4836715], [9.0687067, 7.4834821], [9.0687067, 7.4834821], [9.0687067, 7.4834821], [9.0686289, 7.4832957], [9.0686289, 7.4832957], [9.068552, 7.4831108], [9.068552, 7.4831108], [9.068552, 7.4831108], [9.0684797, 7.4829251], [9.0684797, 7.4829251], [9.0684123, 7.482737], [9.0684123, 7.482737], [9.0684123, 7.482737], [9.0683495, 7.4825504], [9.0683495, 7.4825504], [9.0682889, 7.4823634], [9.0682889, 7.4823634], [9.0682889, 7.4823634], [9.0682344, 7.4821766], [9.0682344, 7.4821766], [9.0681864, 7.4819857], [9.0681864, 7.4819857], [9.0681864, 7.4819857], [9.0681423, 7.4817913], [9.0681423, 7.4817913], [9.0681027, 7.4815982], [9.0681027, 7.4815982], [9.0681027, 7.4815982], [9.0680718, 7.4813981], [9.0680718, 7.4813981], [9.0680449, 7.4812014], [9.0680449, 7.4812014], [9.0680449, 7.4812014], [9.0680222, 7.4810006], [9.0680222, 7.4810006], [9.0680222, 7.4810006], [9.0680045, 7.4807966], [9.0680045, 7.4807966], [9.0679942, 7.4805898], [9.0679942, 7.4805898], [9.0679942, 7.4805898], [9.0679884, 7.4803803], [9.0679884, 7.4803803], [9.0679873, 7.4801656], [9.0679873, 7.4801656], [9.0679873, 7.4801656], [9.0679927, 7.4799494], [9.0679927, 7.4799494], [9.0680097, 7.4797289], [9.0680097, 7.4797289], [9.0680097, 7.4797289], [9.0680303, 7.4795066], [9.0680303, 7.4795066], [9.0680542, 7.4792858], [9.0680542, 7.4792858], [9.0680542, 7.4792858], [9.0680861, 7.4790604], [9.0680861, 7.4790604], [9.0681195, 7.478834], [9.0681195, 7.478834], [9.0681195, 7.478834], [9.0681528, 7.4786006], [9.0681528, 7.4786006], [9.0681883, 7.4783634], [9.0681883, 7.4783634], [9.0681883, 7.4783634], [9.0682299, 7.4781236], [9.0682299, 7.4781236], [9.0682765, 7.4778784], [9.0682765, 7.4778784], [9.0682765, 7.4778784], [9.0683214, 7.4776332], [9.0683214, 7.4776332], [9.0683669, 7.4773899], [9.0683669, 7.4773899], [9.0683669, 7.4773899], [9.0684122, 7.4771477], [9.0684122, 7.4771477], [9.0684551, 7.4769024], [9.0684551, 7.4769024], [9.0684551, 7.4769024], [9.0684986, 7.4766557], [9.0684986, 7.4766557], [9.0685435, 7.4764098], [9.0685435, 7.4764098], [9.0685435, 7.4764098], [9.0685872, 7.4761643], [9.0685872, 7.4761643], [9.0686301, 7.4759185], [9.0686301, 7.4759185], [9.0686301, 7.4759185], [9.0686754, 7.4756699], [9.0686754, 7.4756699], [9.0687204, 7.4754227], [9.0687204, 7.4754227], [9.0687204, 7.4754227], [9.0687663, 7.4751768], [9.0687663, 7.4751768], [9.0688115, 7.474933], [9.0688115, 7.474933], [9.0688115, 7.474933], [9.0688549, 7.4746871], [9.0688549, 7.4746871], [9.0688549, 7.4746871], [9.0688965, 7.474442], [9.0688965, 7.474442], [9.0689414, 7.4741996], [9.0689414, 7.4741996], [9.0689414, 7.4741996], [9.0689836, 7.4739539], [9.0689836, 7.4739539], [9.0690284, 7.4737099], [9.0690284, 7.4737099], [9.0690284, 7.4737099], [9.0690758, 7.4734657], [9.0690758, 7.4734657], [9.0691236, 7.4732219], [9.0691236, 7.4732219], [9.0691236, 7.4732219], [9.069171, 7.4729759], [9.069171, 7.4729759], [9.0692148, 7.4727303], [9.0692148, 7.4727303], [9.0692148, 7.4727303], [9.0692601, 7.4724863], [9.0692601, 7.4724863], [9.0693026, 7.4722417], [9.0693026, 7.4722417], [9.0693026, 7.4722417], [9.0693417, 7.4719969], [9.0693417, 7.4719969], [9.0693747, 7.4717538], [9.0693747, 7.4717538], [9.0693747, 7.4717538], [9.0694106, 7.471514], [9.0694106, 7.471514], [9.0694461, 7.4712743], [9.0694461, 7.4712743], [9.0694461, 7.4712743], [9.0694878, 7.4710392], [9.0694878, 7.4710392], [9.0695288, 7.4708122], [9.0695288, 7.4708122], [9.0695288, 7.4708122], [9.0695661, 7.4705944], [9.0695661, 7.4705944], [9.0695999, 7.4703808], [9.0695999, 7.4703808], [9.0695999, 7.4703808], [9.0696386, 7.470174], [9.0696386, 7.470174], [9.0696747, 7.4699697], [9.0696747, 7.4699697], [9.0696747, 7.4699697], [9.0697118, 7.4697688], [9.0697118, 7.4697688], [9.0697445, 7.4695757], [9.0697445, 7.4695757], [9.0697445, 7.4695757], [9.0697805, 7.4693951], [9.0697805, 7.4693951], [9.0698122, 7.4692254], [9.0698122, 7.4692254], [9.0698122, 7.4692254], [9.0698453, 7.4690571], [9.0698453, 7.4690571], [9.0698771, 7.4688921], [9.0698771, 7.4688921], [9.0698771, 7.4688921], [9.0699117, 7.4687248], [9.0699117, 7.4687248], [9.069944, 7.4685529], [9.069944, 7.4685529], [9.069944, 7.4685529], [9.0699742, 7.4683781], [9.0699742, 7.4683781], [9.0700096, 7.4681969], [9.0700096, 7.4681969], [9.0700096, 7.4681969], [9.0700417, 7.4680145], [9.0700417, 7.4680145], [9.0700747, 7.4678274], [9.0700747, 7.4678274], [9.0700747, 7.4678274], [9.0701134, 7.4676431], [9.0701134, 7.4676431], [9.0701547, 7.4674601], [9.0701547, 7.4674601], [9.0701547, 7.4674601], [9.0701996, 7.4672774], [9.0701996, 7.4672774], [9.0702504, 7.4670938], [9.0702504, 7.4670938], [9.0702504, 7.4670938], [9.070307, 7.4669093], [9.070307, 7.4669093], [9.0703691, 7.4667232], [9.0703691, 7.4667232], [9.0703691, 7.4667232], [9.0704361, 7.4665385], [9.0704361, 7.4665385], [9.0705079, 7.4663549], [9.0705079, 7.4663549], [9.0705079, 7.4663549], [9.070586, 7.4661702], [9.070586, 7.4661702], [9.0706683, 7.4659852], [9.0706683, 7.4659852], [9.0706683, 7.4659852], [9.0707539, 7.4657996], [9.0707539, 7.4657996], [9.0708413, 7.4656117], [9.0708413, 7.4656117], [9.0708413, 7.4656117], [9.0709306, 7.4654205], [9.0709306, 7.4654205], [9.0710233, 7.4652302], [9.0710233, 7.4652302], [9.0710233, 7.4652302], [9.0711204, 7.4650412], [9.0711204, 7.4650412], [9.0712254, 7.4648521], [9.0712254, 7.4648521], [9.0712254, 7.4648521], [9.0713287, 7.4646612], [9.0713287, 7.4646612], [9.0714381, 7.4644746], [9.0714381, 7.4644746], [9.0714381, 7.4644746], [9.0715542, 7.4642924], [9.0715542, 7.4642924], [9.0716761, 7.4641172], [9.0716761, 7.4641172], [9.0716761, 7.4641172], [9.0717924, 7.4639465], [9.0717924, 7.4639465], [9.071911, 7.46378], [9.071911, 7.46378], [9.071911, 7.46378], [9.0720323, 7.4636139], [9.0720323, 7.4636139], [9.0720323, 7.4636139], [9.0721592, 7.4634545], [9.0721592, 7.4634545], [9.0722871, 7.4633019], [9.0722871, 7.4633019], [9.0722871, 7.4633019], [9.0724192, 7.4631494], [9.0724192, 7.4631494], [9.0725522, 7.4630036], [9.0725522, 7.4630036], [9.0725522, 7.4630036], [9.072683, 7.4628615], [9.072683, 7.4628615], [9.0728158, 7.4627181], [9.0728158, 7.4627181], [9.0728158, 7.4627181], [9.0729461, 7.4625746], [9.0729461, 7.4625746], [9.0730763, 7.4624339], [9.0730763, 7.4624339], [9.0730763, 7.4624339], [9.0732076, 7.4622949], [9.0732076, 7.4622949], [9.0733386, 7.4621554], [9.0733386, 7.4621554], [9.0733386, 7.4621554], [9.0734689, 7.4620171], [9.0734689, 7.4620171], [9.0736011, 7.4618782], [9.0736011, 7.4618782], [9.0736011, 7.4618782], [9.0737359, 7.4617366], [9.0737359, 7.4617366], [9.0738663, 7.4615999], [9.0738663, 7.4615999], [9.0738663, 7.4615999], [9.0739934, 7.4614645], [9.0739934, 7.4614645], [9.0741149, 7.4613293], [9.0741149, 7.4613293], [9.0741149, 7.4613293], [9.0742307, 7.4611971], [9.0742307, 7.4611971], [9.0743458, 7.4610707], [9.0743458, 7.4610707], [9.0743458, 7.4610707], [9.074458, 7.4609449], [9.074458, 7.4609449], [9.074458, 7.4609449], [9.0745719, 7.4608218], [9.0745719, 7.4608218], [9.074684, 7.4607005], [9.074684, 7.4607005], [9.074684, 7.4607005], [9.0747945, 7.4605805], [9.0747945, 7.4605805], [9.0749047, 7.4604625], [9.0749047, 7.4604625], [9.0749047, 7.4604625], [9.0750147, 7.4603484], [9.0750147, 7.4603484], [9.0751224, 7.4602344], [9.0751224, 7.4602344], [9.0751224, 7.4602344], [9.0752285, 7.4601121], [9.0752285, 7.4601121], [9.0753381, 7.4599877], [9.0753381, 7.4599877], [9.0753381, 7.4599877], [9.0754476, 7.4598597], [9.0754476, 7.4598597], [9.0755537, 7.4597323], [9.0755537, 7.4597323], [9.0755537, 7.4597323], [9.0756568, 7.4596102], [9.0756568, 7.4596102], [9.0757648, 7.4594969], [9.0757648, 7.4594969], [9.0757648, 7.4594969], [9.0758759, 7.4593838], [9.0758759, 7.4593838], [9.0758759, 7.4593838], [9.075987, 7.4592681], [9.075987, 7.4592681], [9.076096, 7.4591539], [9.076096, 7.4591539], [9.076096, 7.4591539], [9.0762014, 7.4590414], [9.0762014, 7.4590414], [9.0763058, 7.4589265], [9.0763058, 7.4589265], [9.0763058, 7.4589265], [9.0764055, 7.4588124], [9.0764055, 7.4588124], [9.0765008, 7.4587031], [9.0765008, 7.4587031], [9.0765008, 7.4587031], [9.0765944, 7.4585954], [9.0765944, 7.4585954], [9.076689, 7.4584902], [9.076689, 7.4584902], [9.076689, 7.4584902], [9.0767812, 7.4583846], [9.0767812, 7.4583846], [9.0768699, 7.4582794], [9.0768699, 7.4582794], [9.0768699, 7.4582794], [9.0769576, 7.4581721], [9.0769576, 7.4581721], [9.0770431, 7.4580604], [9.0770431, 7.4580604], [9.0770431, 7.4580604], [9.0771279, 7.4579465], [9.0771279, 7.4579465], [9.0772084, 7.4578318], [9.0772084, 7.4578318], [9.0772084, 7.4578318], [9.0772854, 7.4577255], [9.0772854, 7.4577255], [9.0773556, 7.4576307], [9.0773556, 7.4576307], [9.0773556, 7.4576307], [9.0774161, 7.4575429], [9.0774161, 7.4575429], [9.0774713, 7.4574608], [9.0774713, 7.4574608], [9.0774713, 7.4574608], [9.0775177, 7.4573804], [9.0775177, 7.4573804], [9.0775177, 7.4573804], [9.077564, 7.4573042], [9.077564, 7.4573042], [9.0776049, 7.4572379], [9.0776049, 7.4572379], [9.0776049, 7.4572379], [9.0776431, 7.4571773], [9.0776431, 7.4571773], [9.0776759, 7.4571218], [9.0776759, 7.4571218], [9.0776759, 7.4571218], [9.0777053, 7.4570702], [9.0777053, 7.4570702], [9.0777335, 7.457021], [9.0777335, 7.457021], [9.0777335, 7.457021], [9.077766, 7.4569642], [9.077766, 7.4569642], [9.077766, 7.4569642], [9.0777992, 7.4569016], [9.0777992, 7.4569016], [9.0778344, 7.4568381], [9.0778344, 7.4568381], [9.0778344, 7.4568381], [9.077871, 7.4567716], [9.077871, 7.4567716], [9.0779076, 7.4567022], [9.0779076, 7.4567022], [9.0779076, 7.4567022], [9.0779446, 7.4566305], [9.0779446, 7.4566305], [9.0779824, 7.4565539], [9.0779824, 7.4565539], [9.0779824, 7.4565539], [9.0780195, 7.4564772], [9.0780195, 7.4564772], [9.0780568, 7.4563958], [9.0780568, 7.4563958], [9.0780568, 7.4563958], [9.0780951, 7.4563132], [9.0780951, 7.4563132], [9.0781355, 7.4562235], [9.0781355, 7.4562235], [9.0781355, 7.4562235], [9.0781775, 7.4561274], [9.0781775, 7.4561274], [9.0781775, 7.4561274], [9.0782197, 7.4560244], [9.0782197, 7.4560244], [9.0782624, 7.4559154], [9.0782624, 7.4559154], [9.0782624, 7.4559154], [9.0783058, 7.4557998], [9.0783058, 7.4557998], [9.07835, 7.4556789], [9.07835, 7.4556789], [9.07835, 7.4556789], [9.0783934, 7.4555527], [9.0783934, 7.4555527], [9.0784366, 7.4554222], [9.0784366, 7.4554222], [9.0784366, 7.4554222], [9.0784807, 7.455286], [9.0784807, 7.455286], [9.0785243, 7.4551422], [9.0785243, 7.4551422], [9.0785243, 7.4551422], [9.0785668, 7.4549954], [9.0785668, 7.4549954], [9.0786079, 7.4548426], [9.0786079, 7.4548426], [9.0786079, 7.4548426], [9.0786482, 7.4546879], [9.0786482, 7.4546879], [9.0786821, 7.4545343], [9.0786821, 7.4545343], [9.0786821, 7.4545343], [9.0787166, 7.4543772], [9.0787166, 7.4543772], [9.078747, 7.4542195], [9.078747, 7.4542195], [9.078747, 7.4542195], [9.0787755, 7.4540582], [9.0787755, 7.4540582], [9.0788014, 7.4538948], [9.0788014, 7.4538948], [9.0788014, 7.4538948], [9.0788275, 7.4537254], [9.0788275, 7.4537254], [9.0788275, 7.4537254], [9.078849, 7.4535531], [9.078849, 7.4535531], [9.0788671, 7.4533749], [9.0788671, 7.4533749], [9.0788671, 7.4533749], [9.0788859, 7.4531911], [9.0788859, 7.4531911], [9.078903, 7.4530028], [9.078903, 7.4530028], [9.078903, 7.4530028], [9.0789148, 7.452812], [9.0789148, 7.452812], [9.078919, 7.4526186], [9.078919, 7.4526186], [9.078919, 7.4526186], [9.0789186, 7.4524225], [9.0789186, 7.4524225], [9.0789158, 7.4522298], [9.0789158, 7.4522298], [9.0789158, 7.4522298], [9.0789097, 7.4520455], [9.0789097, 7.4520455], [9.0789004, 7.4518696], [9.0789004, 7.4518696], [9.0789004, 7.4518696], [9.078886, 7.4516958], [9.078886, 7.4516958], [9.078886, 7.4516958], [9.0788698, 7.4515233], [9.0788698, 7.4515233], [9.0788471, 7.4513491], [9.0788471, 7.4513491], [9.0788471, 7.4513491], [9.0788214, 7.4511704], [9.0788214, 7.4511704], [9.0787948, 7.4509933], [9.0787948, 7.4509933], [9.0787948, 7.4509933], [9.0787646, 7.4508154], [9.0787646, 7.4508154], [9.0787289, 7.4506376], [9.0787289, 7.4506376], [9.0787289, 7.4506376], [9.0786918, 7.4504616], [9.0786918, 7.4504616], [9.0786553, 7.4502825], [9.0786553, 7.4502825], [9.0786553, 7.4502825], [9.0786122, 7.4501094], [9.0786122, 7.4501094], [9.0785684, 7.4499377], [9.0785684, 7.4499377], [9.0785684, 7.4499377], [9.0785177, 7.4497689], [9.0785177, 7.4497689], [9.0784668, 7.4496007], [9.0784668, 7.4496007], [9.0784668, 7.4496007], [9.0784122, 7.4494287], [9.0784122, 7.4494287], [9.0783576, 7.449257], [9.0783576, 7.449257], [9.0783576, 7.449257], [9.0783024, 7.4490886], [9.0783024, 7.4490886], [9.0782453, 7.4489219], [9.0782453, 7.4489219], [9.0782453, 7.4489219], [9.0781892, 7.4487533], [9.0781892, 7.4487533], [9.0781323, 7.448584], [9.0781323, 7.448584], [9.0781323, 7.448584], [9.0780739, 7.4484181], [9.0780739, 7.4484181], [9.0780148, 7.4482526], [9.0780148, 7.4482526], [9.0780148, 7.4482526], [9.0779579, 7.448092], [9.0779579, 7.448092], [9.0779579, 7.448092], [9.0778957, 7.4479286], [9.0778957, 7.4479286], [9.0778336, 7.4477543], [9.0778336, 7.4477543], [9.0778336, 7.4477543], [9.0777738, 7.4475776], [9.0777738, 7.4475776], [9.0777139, 7.447399], [9.0777139, 7.447399], [9.0777139, 7.447399], [9.0776499, 7.4472171], [9.0776499, 7.4472171], [9.0775864, 7.4470431], [9.0775864, 7.4470431], [9.0775864, 7.4470431], [9.0775285, 7.446872], [9.0775285, 7.446872], [9.0774682, 7.4467007], [9.0774682, 7.4467007], [9.0774682, 7.4467007], [9.0774095, 7.4465334], [9.0774095, 7.4465334], [9.0773523, 7.4463658], [9.0773523, 7.4463658], [9.0773523, 7.4463658], [9.077295, 7.446198], [9.077295, 7.446198], [9.0772404, 7.4460238], [9.0772404, 7.4460238], [9.0772404, 7.4460238], [9.0771849, 7.445845], [9.0771849, 7.445845], [9.0771297, 7.4456627], [9.0771297, 7.4456627], [9.0771297, 7.4456627], [9.0770712, 7.4454809], [9.0770712, 7.4454809], [9.0770167, 7.4452978], [9.0770167, 7.4452978], [9.0770167, 7.4452978], [9.0769661, 7.4451112], [9.0769661, 7.4451112], [9.0769661, 7.4451112], [9.0769174, 7.4449238], [9.0769174, 7.4449238], [9.0768706, 7.444734], [9.0768706, 7.444734], [9.0768706, 7.444734], [9.076822, 7.4445428], [9.076822, 7.4445428], [9.0767744, 7.4443554], [9.0767744, 7.4443554], [9.0767744, 7.4443554], [9.0767305, 7.4441693], [9.0767305, 7.4441693], [9.0766924, 7.4439781], [9.0766924, 7.4439781], [9.0766924, 7.4439781], [9.076658, 7.4437855], [9.076658, 7.4437855], [9.0766224, 7.4435971], [9.0766224, 7.4435971], [9.0766224, 7.4435971], [9.0765876, 7.4434057], [9.0765876, 7.4434057], [9.076555, 7.4432194], [9.076555, 7.4432194], [9.076555, 7.4432194], [9.0765196, 7.4430367], [9.0765196, 7.4430367], [9.0764892, 7.4428558], [9.0764892, 7.4428558], [9.0764892, 7.4428558], [9.0764608, 7.4426778], [9.0764608, 7.4426778], [9.0764387, 7.4425027], [9.0764387, 7.4425027], [9.0764387, 7.4425027], [9.076419, 7.4423326], [9.076419, 7.4423326], [9.0764013, 7.4421721], [9.0764013, 7.4421721], [9.0764013, 7.4421721], [9.0763854, 7.4420236], [9.0763854, 7.4420236], [9.0763696, 7.4418838], [9.0763696, 7.4418838], [9.0763696, 7.4418838], [9.0763613, 7.4417514], [9.0763613, 7.4417514], [9.0763546, 7.4416196], [9.0763546, 7.4416196], [9.0763546, 7.4416196], [9.0763521, 7.441497], [9.0763521, 7.441497], [9.0763584, 7.4413812], [9.0763584, 7.4413812], [9.0763584, 7.4413812], [9.0763698, 7.4412738], [9.0763698, 7.4412738], [9.0763869, 7.4411696], [9.0763869, 7.4411696], [9.0763869, 7.4411696], [9.0764013, 7.4410607], [9.0764013, 7.4410607], [9.0764013, 7.4410607], [9.076415, 7.4409482], [9.076415, 7.4409482], [9.0764236, 7.4408336], [9.0764236, 7.4408336], [9.0764236, 7.4408336], [9.0764325, 7.4407149], [9.0764325, 7.4407149], [9.0764403, 7.4405882], [9.0764403, 7.4405882], [9.0764403, 7.4405882], [9.0764438, 7.4404561], [9.0764438, 7.4404561], [9.0764472, 7.440322], [9.0764472, 7.440322], [9.0764472, 7.440322], [9.0764492, 7.4401874], [9.0764492, 7.4401874], [9.0764582, 7.4400499], [9.0764582, 7.4400499], [9.0764582, 7.4400499], [9.0764648, 7.439916], [9.0764648, 7.439916], [9.0764779, 7.4397833], [9.0764779, 7.4397833], [9.0764779, 7.4397833], [9.0764923, 7.4396522], [9.0764923, 7.4396522], [9.0765059, 7.4395189], [9.0765059, 7.4395189], [9.0765059, 7.4395189], [9.0765197, 7.4393817], [9.0765197, 7.4393817], [9.0765197, 7.4393817], [9.076535, 7.4392453], [9.076535, 7.4392453], [9.076551, 7.4391115], [9.076551, 7.4391115], [9.076551, 7.4391115], [9.0765662, 7.4389789], [9.0765662, 7.4389789], [9.0765832, 7.4388556], [9.0765832, 7.4388556], [9.0765832, 7.4388556], [9.0765992, 7.4387447], [9.0765992, 7.4387447], [9.0766141, 7.4386424], [9.0766141, 7.4386424], [9.0766141, 7.4386424], [9.0766261, 7.4385482], [9.0766261, 7.4385482], [9.0766261, 7.4385482], [9.0766355, 7.4384742], [9.0766355, 7.4384742], [9.0766434, 7.4384147], [9.0766434, 7.4384147], [9.0766434, 7.4384147], [9.0766271, 7.4383795], [9.0766271, 7.4383795], [9.0765978, 7.4383557], [9.0765978, 7.4383557], [9.0765978, 7.4383557], [9.0765475, 7.4383422], [9.0765475, 7.4383422], [9.0764833, 7.4383408], [9.0764833, 7.4383408], [9.0764833, 7.4383408], [9.0764127, 7.4383374], [9.0764127, 7.4383374], [9.0763363, 7.4383331], [9.0763363, 7.4383331], [9.0763363, 7.4383331], [9.0762555, 7.438323], [9.0762555, 7.438323], [9.0761665, 7.4383142], [9.0761665, 7.4383142], [9.0761665, 7.4383142], [9.0760777, 7.4383073], [9.0760777, 7.4383073], [9.0759853, 7.4383018], [9.0759853, 7.4383018], [9.0759853, 7.4383018], [9.0758958, 7.4383183], [9.0758958, 7.4383183], [9.075813, 7.4383335], [9.075813, 7.4383335], [9.075813, 7.4383335], [9.0757546, 7.4383848], [9.0757546, 7.4383848], [9.0757218, 7.4384561], [9.0757218, 7.4384561], [9.0757218, 7.4384561], [9.0757055, 7.4385417], [9.0757055, 7.4385417], [9.075704, 7.4386375], [9.075704, 7.4386375], [9.075704, 7.4386375], [9.0757099, 7.4387445], [9.0757099, 7.4387445], [9.0757082, 7.4388585], [9.0757082, 7.4388585], [9.0757082, 7.4388585], [9.075705, 7.4389796], [9.075705, 7.4389796], [9.075705, 7.4389796], [9.0757046, 7.4391077], [9.0757046, 7.4391077], [9.0757031, 7.4392394], [9.0757031, 7.4392394], [9.0757031, 7.4392394], [9.0757046, 7.4393789], [9.0757046, 7.4393789], [9.075707, 7.4395258], [9.075707, 7.4395258], [9.075707, 7.4395258], [9.0757098, 7.4396778], [9.0757098, 7.4396778], [9.0757136, 7.4398371], [9.0757136, 7.4398371], [9.0757136, 7.4398371], [9.0757199, 7.4399973], [9.0757199, 7.4399973], [9.0757302, 7.4401629], [9.0757302, 7.4401629], [9.0757302, 7.4401629], [9.0757446, 7.4403321], [9.0757446, 7.4403321], [9.0757446, 7.4403321], [9.0757647, 7.4404988], [9.0757647, 7.4404988], [9.0757857, 7.4406716], [9.0757857, 7.4406716], [9.0757857, 7.4406716], [9.0758059, 7.4408506], [9.0758059, 7.4408506], [9.0758267, 7.4410346], [9.0758267, 7.4410346], [9.0758267, 7.4410346], [9.0758483, 7.4412161], [9.0758483, 7.4412161], [9.0758697, 7.441392], [9.0758697, 7.441392], [9.0758697, 7.441392], [9.0758877, 7.4415653], [9.0758877, 7.4415653], [9.0759033, 7.4417388], [9.0759033, 7.4417388], [9.0759033, 7.4417388], [9.0759215, 7.4419122], [9.0759215, 7.4419122], [9.0759442, 7.4420862], [9.0759442, 7.4420862], [9.0759442, 7.4420862], [9.0759643, 7.4422625], [9.0759643, 7.4422625], [9.0759888, 7.4424393], [9.0759888, 7.4424393], [9.0759888, 7.4424393], [9.0760168, 7.4426177], [9.0760168, 7.4426177], [9.0760457, 7.4427984], [9.0760457, 7.4427984], [9.0760457, 7.4427984], [9.0760769, 7.4429803], [9.0760769, 7.4429803], [9.0761069, 7.4431635], [9.0761069, 7.4431635], [9.0761069, 7.4431635], [9.0761376, 7.4433504], [9.0761376, 7.4433504], [9.0761704, 7.4435359], [9.0761704, 7.4435359], [9.0761704, 7.4435359], [9.0762065, 7.4437188], [9.0762065, 7.4437188], [9.0762444, 7.4439015], [9.0762444, 7.4439015], [9.0762444, 7.4439015], [9.0762846, 7.4440818], [9.0762846, 7.4440818], [9.0763262, 7.4442624], [9.0763262, 7.4442624], [9.0763262, 7.4442624], [9.0763722, 7.4444339], [9.0763722, 7.4444339], [9.0764213, 7.4446078], [9.0764213, 7.4446078], [9.0764213, 7.4446078], [9.0764748, 7.4447856], [9.0764748, 7.4447856], [9.0765275, 7.4449643], [9.0765275, 7.4449643], [9.0765275, 7.4449643], [9.0765793, 7.4451394], [9.0765793, 7.4451394], [9.0766304, 7.4453158], [9.0766304, 7.4453158], [9.0766304, 7.4453158], [9.0766838, 7.4454887], [9.0766838, 7.4454887], [9.0766838, 7.4454887], [9.076735, 7.4456624], [9.076735, 7.4456624], [9.076787, 7.4458374], [9.076787, 7.4458374], [9.076787, 7.4458374], [9.0768382, 7.4460159], [9.0768382, 7.4460159], [9.0768911, 7.4461894], [9.0768911, 7.4461894], [9.0768911, 7.4461894], [9.076944, 7.4463602], [9.076944, 7.4463602], [9.0769972, 7.4465297], [9.0769972, 7.4465297], [9.0769972, 7.4465297], [9.0770555, 7.446696], [9.0770555, 7.446696], [9.0771132, 7.4468546], [9.0771132, 7.4468546], [9.0771132, 7.4468546], [9.0771708, 7.4470066], [9.0771708, 7.4470066], [9.0772242, 7.4471517], [9.0772242, 7.4471517], [9.0772242, 7.4471517], [9.0772723, 7.4472882], [9.0772723, 7.4472882], [9.0772723, 7.4472882], [9.0773171, 7.4474137], [9.0773171, 7.4474137], [9.0773599, 7.4475286], [9.0773599, 7.4475286], [9.0773599, 7.4475286], [9.0773957, 7.4476391], [9.0773957, 7.4476391], [9.0774224, 7.4477379], [9.0774224, 7.4477379], [9.0774224, 7.4477379], [9.0774396, 7.4478267], [9.0774396, 7.4478267], [9.0774448, 7.4479052], [9.0774448, 7.4479052], [9.0774448, 7.4479052], [9.0774289, 7.4479786], [9.0774289, 7.4479786], [9.0773939, 7.4480399], [9.0773939, 7.4480399], [9.0773939, 7.4480399], [9.0773448, 7.4480924], [9.0773448, 7.4480924], [9.0772765, 7.4481332], [9.0772765, 7.4481332], [9.0772765, 7.4481332], [9.0772054, 7.448167], [9.0772054, 7.448167], [9.0771241, 7.4481897], [9.0771241, 7.4481897], [9.0771241, 7.4481897], [9.077027, 7.448205], [9.077027, 7.448205], [9.0769294, 7.4482194], [9.0769294, 7.4482194], [9.0769294, 7.4482194], [9.076824, 7.4482271], [9.076824, 7.4482271], [9.0767032, 7.4482295], [9.0767032, 7.4482295], [9.0767032, 7.4482295], [9.0765746, 7.4482331], [9.0765746, 7.4482331], [9.0764452, 7.4482265], [9.0764452, 7.4482265], [9.0764452, 7.4482265], [9.0763224, 7.4482197], [9.0763224, 7.4482197], [9.076203, 7.448211], [9.076203, 7.448211], [9.076203, 7.448211], [9.0760865, 7.4482025], [9.0760865, 7.4482025], [9.0759762, 7.448187], [9.0759762, 7.448187], [9.0759762, 7.448187], [9.0758683, 7.4481664], [9.0758683, 7.4481664], [9.0757637, 7.4481426], [9.0757637, 7.4481426], [9.0757637, 7.4481426], [9.07566, 7.4481168], [9.07566, 7.4481168], [9.0755664, 7.44809], [9.0755664, 7.44809], [9.0755664, 7.44809], [9.0754832, 7.4480655], [9.0754832, 7.4480655], [9.0754024, 7.4480452], [9.0754024, 7.4480452], [9.0754024, 7.4480452], [9.075322, 7.4480214], [9.075322, 7.4480214], [9.0752199, 7.4480006], [9.0752199, 7.4480006], [9.0752199, 7.4480006], [9.0751184, 7.4479668], [9.0751184, 7.4479668], [9.0750144, 7.4479185], [9.0750144, 7.4479185], [9.0750144, 7.4479185], [9.0749102, 7.4478685], [9.0749102, 7.4478685], [9.0748025, 7.4478151], [9.0748025, 7.4478151], [9.0748025, 7.4478151], [9.0746901, 7.447757], [9.0746901, 7.447757], [9.0746901, 7.447757], [9.0745741, 7.447685], [9.0745741, 7.447685], [9.074462, 7.4476183], [9.074462, 7.4476183], [9.074462, 7.4476183], [9.0743572, 7.4475578], [9.0743572, 7.4475578], [9.0742711, 7.4475058], [9.0742711, 7.4475058], [9.0742711, 7.4475058], [9.0741979, 7.4474614], [9.0741979, 7.4474614], [9.0741334, 7.4474213], [9.0741334, 7.4474213], [9.0741334, 7.4474213], [9.0740755, 7.4473832], [9.0740755, 7.4473832], [9.0740296, 7.4473555], [9.0740296, 7.4473555], [9.0740296, 7.4473555], [9.0739987, 7.4473312], [9.0739987, 7.4473312], [9.0739798, 7.4473188], [9.0739798, 7.4473188], [9.0739798, 7.4473188], [9.0739831, 7.4473184], [9.0739831, 7.4473184], [9.0739815, 7.4473159], [9.0739815, 7.4473159], [9.0739815, 7.4473159], [9.0739794, 7.4473146], [9.0739794, 7.4473146], [9.0739794, 7.4473146], [9.073983, 7.4473141], [9.073983, 7.4473141], [9.0739853, 7.4473156], [9.0739853, 7.4473156], [9.0739853, 7.4473156], [9.0739844, 7.4473146], [9.0739844, 7.4473146], [9.0739851, 7.447314], [9.0739851, 7.447314], [9.0739851, 7.447314], [9.0739866, 7.4473115], [9.0739866, 7.4473115], [9.0739899, 7.4473055], [9.0739899, 7.4473055], [9.0739899, 7.4473055], [9.0739897, 7.4473056], [9.0739897, 7.4473056], [9.0739897, 7.4473056], [9.0739897, 7.4473056], [9.0739897, 7.4473056], [9.0739897, 7.4473056], [9.0739897, 7.4473056], [9.0739897, 7.4473056], [9.0739897, 7.4473056], [9.0739897, 7.4473056], [9.0739897, 7.4473056], [9.0739897, 7.4473056], [9.0739897, 7.4473056], [9.0739897, 7.4473056], [9.0739897, 7.4473056], [9.0739963, 7.4472943], [9.0739963, 7.4472943], [9.0739875, 7.4472892], [9.0739875, 7.4472892], [9.0739875, 7.4472892], [9.0739533, 7.4472715], [9.0739533, 7.4472715], [9.0739108, 7.4472513], [9.0739108, 7.4472513], [9.0739108, 7.4472513], [9.0738738, 7.4472312], [9.0738738, 7.4472312], [9.07385, 7.4472182], [9.07385, 7.4472182], [9.07385, 7.4472182], [9.0738319, 7.4472084], [9.0738319, 7.4472084], [9.0738319, 7.4472084], [9.0738155, 7.4471989], [9.0738155, 7.4471989], [9.0737843, 7.4471797], [9.0737843, 7.4471797], [9.0737843, 7.4471797], [9.0737318, 7.4471501], [9.0737318, 7.4471501], [9.0736694, 7.4471147], [9.0736694, 7.4471147], [9.0736694, 7.4471147], [9.073595, 7.4470743], [9.073595, 7.4470743], [9.0735099, 7.4470275], [9.0735099, 7.4470275], [9.0735099, 7.4470275], [9.0734207, 7.4469737], [9.0734207, 7.4469737], [9.0733208, 7.4469159], [9.0733208, 7.4469159], [9.0733208, 7.4469159], [9.07322, 7.4468533], [9.07322, 7.4468533], [9.0731078, 7.4467889], [9.0731078, 7.4467889], [9.0731078, 7.4467889], [9.0729937, 7.4467256], [9.0729937, 7.4467256], [9.0728762, 7.446663], [9.0728762, 7.446663], [9.0728762, 7.446663], [9.0727547, 7.4466051], [9.0727547, 7.4466051], [9.0726385, 7.4465493], [9.0726385, 7.4465493], [9.0726385, 7.4465493], [9.0725217, 7.4464993], [9.0725217, 7.4464993], [9.0725217, 7.4464993], [9.0724045, 7.4464504], [9.0724045, 7.4464504], [9.0722937, 7.4464039], [9.0722937, 7.4464039], [9.0722937, 7.4464039], [9.0721843, 7.4463624], [9.0721843, 7.4463624], [9.0720795, 7.4463295], [9.0720795, 7.4463295], [9.0720795, 7.4463295], [9.0719782, 7.446294], [9.0719782, 7.446294], [9.0718814, 7.4462615], [9.0718814, 7.4462615], [9.0718814, 7.4462615], [9.0717883, 7.4462425], [9.0717883, 7.4462425], [9.0717025, 7.4462239], [9.0717025, 7.4462239], [9.0717025, 7.4462239], [9.0716266, 7.4462048], [9.0716266, 7.4462048], [9.0715647, 7.4461922], [9.0715647, 7.4461922], [9.0715647, 7.4461922], [9.0715192, 7.4461838], [9.0715192, 7.4461838], [9.0714897, 7.4461763], [9.0714897, 7.4461763], [9.0714897, 7.4461763], [9.0714734, 7.4461717], [9.0714734, 7.4461717], [9.0714553, 7.4461708], [9.0714553, 7.4461708], [9.0714553, 7.4461708], [9.0714284, 7.446165], [9.0714284, 7.446165], [9.0714284, 7.446165], [9.0713983, 7.4461428], [9.0713983, 7.4461428], [9.0713535, 7.4461291], [9.0713535, 7.4461291], [9.0713535, 7.4461291], [9.0712983, 7.4461174], [9.0712983, 7.4461174], [9.0712304, 7.44611], [9.0712304, 7.44611], [9.0712304, 7.44611], [9.0711561, 7.4461024], [9.0711561, 7.4461024], [9.0710791, 7.4460978], [9.0710791, 7.4460978], [9.0710791, 7.4460978], [9.0710033, 7.4460904], [9.0710033, 7.4460904], [9.0709298, 7.4460832], [9.0709298, 7.4460832], [9.0709298, 7.4460832], [9.0708534, 7.4460798], [9.0708534, 7.4460798], [9.0708534, 7.4460798], [9.0707741, 7.4460702], [9.0707741, 7.4460702], [9.0706906, 7.4460599], [9.0706906, 7.4460599], [9.0706906, 7.4460599], [9.0706065, 7.4460561], [9.0706065, 7.4460561], [9.0705176, 7.4460549], [9.0705176, 7.4460549], [9.0705176, 7.4460549], [9.0704308, 7.4460541], [9.0704308, 7.4460541], [9.0703447, 7.4460519], [9.0703447, 7.4460519], [9.0703447, 7.4460519], [9.0702548, 7.4460536], [9.0702548, 7.4460536], [9.0701723, 7.4460511], [9.0701723, 7.4460511], [9.0701723, 7.4460511], [9.0701037, 7.4460517], [9.0701037, 7.4460517], [9.0701037, 7.4460517], [9.0700379, 7.4460558], [9.0700379, 7.4460558], [9.0699732, 7.4460608], [9.0699732, 7.4460608], [9.0699732, 7.4460608], [9.0699018, 7.4460642], [9.0699018, 7.4460642], [9.0698296, 7.4460693], [9.0698296, 7.4460693], [9.0698296, 7.4460693], [9.0697591, 7.4460748], [9.0697591, 7.4460748], [9.0696873, 7.4460831], [9.0696873, 7.4460831], [9.0696873, 7.4460831], [9.0696142, 7.4460909], [9.0696142, 7.4460909], [9.0695367, 7.4460996], [9.0695367, 7.4460996], [9.0695367, 7.4460996], [9.0694583, 7.4461049], [9.0694583, 7.4461049], [9.069382, 7.4461136], [9.069382, 7.4461136], [9.069382, 7.4461136], [9.0693103, 7.4461219], [9.0693103, 7.4461219], [9.0692438, 7.4461284], [9.0692438, 7.4461284], [9.0692438, 7.4461284], [9.069178, 7.4461364], [9.069178, 7.4461364], [9.0691225, 7.4461413], [9.0691225, 7.4461413], [9.0691225, 7.4461413], [9.0690768, 7.4461477], [9.0690768, 7.4461477], [9.0690375, 7.4461472], [9.0690375, 7.4461472], [9.0690375, 7.4461472], [9.0690091, 7.4461485], [9.0690091, 7.4461485], [9.068983, 7.4461538], [9.068983, 7.4461538], [9.068983, 7.4461538]]
[9.0514302, 7.4914384]
In [7]:
location_details=newDf5[["UTC Time", 'Speed (Km/h)']]

locationdetailslist=location_details.values.tolist()
print(len(locationdetailslist))
print()
print(locationdetailslist)
print()
print(locationdetailslist[9])
2280

[[1659024166.0, 0.3], [1659024167.0, 1.2], [1659024167.0, 1.2], [1659024167.0, 1.2], [1659024168.0, 0.6], [1659024168.0, 0.6], [1659024169.0, 0.9], [1659024169.0, 0.9], [1659024170.0, 0.9], [1659024170.0, 0.0], [1659024170.0, 0.0], [1659024171.0, 0.0], [1659024171.0, 0.0], [1659024172.0, 0.0], [1659024172.0, 0.0], [1659024172.0, 0.0], [1659024173.0, 0.0], [1659024173.0, 0.0], [1659024173.0, 0.0], [1659024174.0, 0.0], [1659024174.0, 0.0], [1659024175.0, 0.0], [1659024175.0, 0.0], [1659024175.0, 0.0], [1659024176.0, 0.7], [1659024176.0, 0.7], [1659024177.0, 2.5], [1659024177.0, 2.5], [1659024177.0, 2.5], [1659024178.0, 6.5], [1659024178.0, 6.5], [1659024179.0, 9.6], [1659024179.0, 9.6], [1659024179.0, 9.6], [1659024180.0, 12.1], [1659024180.0, 12.1], [1659024181.0, 14.7], [1659024181.0, 14.7], [1659024181.0, 14.7], [1659024182.0, 17.9], [1659024182.0, 17.9], [1659024183.0, 22.2], [1659024183.0, 22.2], [1659024183.0, 22.2], [1659024184.0, 25.6], [1659024184.0, 25.6], [1659024185.0, 25.6], [1659024185.0, 29.5], [1659024185.0, 29.5], [1659024186.0, 32.4], [1659024186.0, 32.4], [1659024187.0, 32.4], [1659024187.0, 34.8], [1659024187.0, 34.8], [1659024188.0, 37.0], [1659024188.0, 37.0], [1659024188.0, 37.0], [1659024189.0, 39.9], [1659024189.0, 39.9], [1659024190.0, 40.1], [1659024190.0, 40.1], [1659024190.0, 40.1], [1659024191.0, 39.5], [1659024191.0, 39.5], [1659024192.0, 38.4], [1659024192.0, 38.4], [1659024192.0, 38.4], [1659024193.0, 37.2], [1659024193.0, 37.2], [1659024194.0, 37.2], [1659024194.0, 37.2], [1659024194.0, 37.2], [1659024195.0, 37.0], [1659024195.0, 37.0], [1659024196.0, 36.3], [1659024196.0, 36.3], [1659024196.0, 36.3], [1659024197.0, 35.7], [1659024197.0, 35.7], [1659024198.0, 36.3], [1659024198.0, 36.3], [1659024198.0, 36.3], [1659024199.0, 36.4], [1659024199.0, 36.4], [1659024200.0, 36.4], [1659024200.0, 36.5], [1659024200.0, 36.5], [1659024201.0, 37.0], [1659024201.0, 37.0], [1659024202.0, 37.0], [1659024202.0, 39.2], [1659024202.0, 39.2], [1659024203.0, 41.0], [1659024203.0, 41.0], [1659024204.0, 41.0], [1659024204.0, 42.5], [1659024204.0, 42.5], [1659024205.0, 43.5], [1659024205.0, 43.5], [1659024205.0, 43.5], [1659024206.0, 44.0], [1659024206.0, 44.0], [1659024207.0, 44.0], [1659024207.0, 44.0], [1659024207.0, 44.0], [1659024208.0, 43.0], [1659024208.0, 43.0], [1659024209.0, 41.8], [1659024209.0, 41.8], [1659024209.0, 41.8], [1659024210.0, 39.9], [1659024210.0, 39.9], [1659024211.0, 39.9], [1659024211.0, 37.0], [1659024211.0, 37.0], [1659024212.0, 34.7], [1659024212.0, 34.7], [1659024213.0, 34.7], [1659024213.0, 32.0], [1659024213.0, 32.0], [1659024214.0, 29.8], [1659024214.0, 29.8], [1659024215.0, 29.8], [1659024215.0, 29.1], [1659024215.0, 29.1], [1659024216.0, 30.3], [1659024216.0, 30.3], [1659024217.0, 30.3], [1659024217.0, 31.5], [1659024217.0, 31.5], [1659024218.0, 32.3], [1659024218.0, 32.3], [1659024219.0, 32.3], [1659024219.0, 35.0], [1659024219.0, 35.0], [1659024220.0, 37.2], [1659024220.0, 37.2], [1659024221.0, 37.2], [1659024221.0, 38.0], [1659024221.0, 38.0], [1659024222.0, 39.8], [1659024222.0, 39.8], [1659024222.0, 39.8], [1659024223.0, 41.7], [1659024223.0, 41.7], [1659024224.0, 43.1], [1659024224.0, 43.1], [1659024224.0, 43.1], [1659024225.0, 44.6], [1659024225.0, 44.6], [1659024226.0, 46.3], [1659024226.0, 46.3], [1659024226.0, 46.3], [1659024227.0, 47.2], [1659024227.0, 47.2], [1659024228.0, 47.2], [1659024228.0, 47.6], [1659024228.0, 47.6], [1659024229.0, 48.2], [1659024229.0, 48.2], [1659024230.0, 48.2], [1659024230.0, 48.7], [1659024230.0, 48.7], [1659024231.0, 48.9], [1659024231.0, 48.9], [1659024232.0, 48.9], [1659024232.0, 49.4], [1659024232.0, 49.4], [1659024233.0, 50.0], [1659024233.0, 50.0], [1659024234.0, 50.0], [1659024234.0, 51.0], [1659024234.0, 51.0], [1659024235.0, 51.3], [1659024235.0, 51.3], [1659024236.0, 51.3], [1659024236.0, 50.9], [1659024236.0, 50.9], [1659024237.0, 49.0], [1659024237.0, 49.0], [1659024237.0, 49.0], [1659024238.0, 46.4], [1659024238.0, 46.4], [1659024239.0, 44.7], [1659024239.0, 44.7], [1659024239.0, 44.7], [1659024240.0, 41.7], [1659024240.0, 41.7], [1659024241.0, 37.2], [1659024241.0, 37.2], [1659024241.0, 37.2], [1659024242.0, 32.1], [1659024242.0, 32.1], [1659024243.0, 29.1], [1659024243.0, 29.1], [1659024243.0, 29.1], [1659024244.0, 26.4], [1659024244.0, 26.4], [1659024245.0, 23.1], [1659024245.0, 23.1], [1659024245.0, 23.1], [1659024246.0, 18.1], [1659024246.0, 18.1], [1659024247.0, 11.2], [1659024247.0, 11.2], [1659024247.0, 11.2], [1659024248.0, 5.8], [1659024248.0, 5.8], [1659024249.0, 2.2], [1659024249.0, 2.2], [1659024249.0, 2.2], [1659024250.0, 0.0], [1659024250.0, 0.0], [1659024251.0, 0.0], [1659024251.0, 0.0], [1659024251.0, 0.0], [1659024252.0, 0.0], [1659024252.0, 0.0], [1659024253.0, 0.0], [1659024253.0, 0.0], [1659024253.0, 0.0], [1659024254.0, 0.0], [1659024254.0, 0.0], [1659024254.0, 0.0], [1659024255.0, 0.0], [1659024255.0, 0.0], [1659024256.0, 0.0], [1659024256.0, 0.0], [1659024256.0, 0.0], [1659024257.0, 0.0], [1659024257.0, 0.0], [1659024258.0, 0.0], [1659024258.0, 0.0], [1659024258.0, 0.0], [1659024259.0, 0.0], [1659024259.0, 0.0], [1659024260.0, 0.0], [1659024260.0, 0.0], [1659024260.0, 0.0], [1659024261.0, 0.0], [1659024261.0, 0.0], [1659024262.0, 0.0], [1659024262.0, 0.0], [1659024262.0, 0.0], [1659024263.0, 0.0], [1659024263.0, 0.0], [1659024264.0, 0.0], [1659024264.0, 0.0], [1659024264.0, 0.0], [1659024265.0, 0.0], [1659024265.0, 0.0], [1659024266.0, 0.0], [1659024266.0, 0.0], [1659024266.0, 0.0], [1659024267.0, 0.0], [1659024267.0, 0.0], [1659024268.0, 0.0], [1659024268.0, 0.0], [1659024268.0, 0.0], [1659024269.0, 0.0], [1659024269.0, 0.0], [1659024270.0, 0.0], [1659024270.0, 0.0], [1659024270.0, 0.0], [1659024271.0, 0.0], [1659024271.0, 0.0], [1659024272.0, 0.0], [1659024272.0, 0.0], [1659024272.0, 0.0], [1659024273.0, 0.0], [1659024273.0, 0.0], [1659024274.0, 0.0], [1659024274.0, 0.0], [1659024274.0, 0.0], [1659024275.0, 1.8], [1659024275.0, 1.8], [1659024275.0, 1.8], [1659024276.0, 0.0], [1659024276.0, 0.0], [1659024277.0, 0.0], [1659024277.0, 0.0], [1659024277.0, 0.0], [1659024278.0, 0.0], [1659024278.0, 0.0], [1659024279.0, 0.0], [1659024279.0, 0.0], [1659024279.0, 0.0], [1659024280.0, 0.0], [1659024280.0, 0.0], [1659024281.0, 0.0], [1659024281.0, 0.0], [1659024281.0, 0.0], [1659024282.0, 0.0], [1659024282.0, 0.0], [1659024283.0, 0.0], [1659024283.0, 0.0], [1659024283.0, 0.0], [1659024284.0, 0.0], [1659024284.0, 0.0], [1659024285.0, 0.0], [1659024285.0, 0.0], [1659024285.0, 0.0], [1659024286.0, 0.0], [1659024286.0, 0.0], [1659024287.0, 0.0], [1659024287.0, 0.0], [1659024287.0, 0.0], [1659024288.0, 0.0], [1659024288.0, 0.0], [1659024289.0, 0.0], [1659024289.0, 0.0], [1659024289.0, 0.0], [1659024290.0, 0.0], [1659024290.0, 0.0], [1659024291.0, 0.0], [1659024291.0, 0.0], [1659024291.0, 0.0], [1659024292.0, 0.0], [1659024292.0, 0.0], [1659024293.0, 0.0], [1659024293.0, 0.0], [1659024293.0, 0.0], [1659024294.0, 0.0], [1659024294.0, 0.0], [1659024295.0, 0.0], [1659024295.0, 0.0], [1659024295.0, 0.0], [1659024296.0, 0.0], [1659024296.0, 0.0], [1659024296.0, 0.0], [1659024297.0, 0.0], [1659024297.0, 0.0], [1659024298.0, 0.0], [1659024298.0, 0.0], [1659024298.0, 0.0], [1659024299.0, 0.0], [1659024299.0, 0.0], [1659024300.0, 0.0], [1659024300.0, 0.0], [1659024300.0, 0.0], [1659024301.0, 0.0], [1659024301.0, 0.0], [1659024302.0, 0.0], [1659024302.0, 0.0], [1659024302.0, 0.0], [1659024303.0, 0.0], [1659024303.0, 0.0], [1659024304.0, 0.0], [1659024304.0, 0.0], [1659024304.0, 0.0], [1659024305.0, 0.0], [1659024305.0, 0.0], [1659024306.0, 0.0], [1659024306.0, 0.0], [1659024306.0, 0.0], [1659024307.0, 2.5], [1659024307.0, 2.5], [1659024308.0, 3.2], [1659024308.0, 3.2], [1659024308.0, 3.2], [1659024309.0, 3.9], [1659024309.0, 3.9], [1659024310.0, 3.9], [1659024310.0, 6.0], [1659024310.0, 6.0], [1659024311.0, 7.3], [1659024311.0, 7.3], [1659024312.0, 7.3], [1659024312.0, 0.0], [1659024312.0, 0.0], [1659024313.0, 12.1], [1659024313.0, 12.1], [1659024314.0, 12.1], [1659024314.0, 13.0], [1659024314.0, 13.0], [1659024315.0, 12.7], [1659024315.0, 12.7], [1659024316.0, 12.7], [1659024316.0, 10.1], [1659024316.0, 10.1], [1659024317.0, 7.5], [1659024317.0, 7.5], [1659024317.0, 7.5], [1659024318.0, 5.3], [1659024318.0, 5.3], [1659024319.0, 4.9], [1659024319.0, 4.9], [1659024319.0, 4.9], [1659024320.0, 5.3], [1659024320.0, 5.3], [1659024321.0, 5.6], [1659024321.0, 5.6], [1659024321.0, 5.6], [1659024322.0, 0.0], [1659024322.0, 0.0], [1659024323.0, 0.0], [1659024323.0, 0.0], [1659024323.0, 0.0], [1659024324.0, 0.0], [1659024324.0, 0.0], [1659024325.0, 0.0], [1659024325.0, 0.0], [1659024325.0, 0.0], [1659024326.0, 0.0], [1659024326.0, 0.0], [1659024327.0, 0.0], [1659024327.0, 0.0], [1659024327.0, 0.0], [1659024328.0, 0.0], [1659024328.0, 0.0], [1659024329.0, 0.0], [1659024329.0, 0.0], [1659024329.0, 0.0], [1659024330.0, 0.0], [1659024330.0, 0.0], [1659024331.0, 0.0], [1659024331.0, 0.0], [1659024331.0, 0.0], [1659024332.0, 0.0], [1659024332.0, 0.0], [1659024332.0, 0.0], [1659024333.0, 0.0], [1659024333.0, 0.0], [1659024334.0, 0.0], [1659024334.0, 0.0], [1659024334.0, 0.0], [1659024335.0, 7.4], [1659024335.0, 7.4], [1659024336.0, 13.6], [1659024336.0, 13.6], [1659024336.0, 13.6], [1659024337.0, 15.6], [1659024337.0, 15.6], [1659024338.0, 16.1], [1659024338.0, 16.1], [1659024338.0, 16.1], [1659024339.0, 16.1], [1659024339.0, 16.1], [1659024340.0, 17.7], [1659024340.0, 17.7], [1659024340.0, 17.7], [1659024341.0, 18.7], [1659024341.0, 18.7], [1659024342.0, 18.7], [1659024342.0, 18.7], [1659024342.0, 18.7], [1659024343.0, 15.3], [1659024343.0, 15.3], [1659024344.0, 11.6], [1659024344.0, 11.6], [1659024344.0, 11.6], [1659024345.0, 9.4], [1659024345.0, 9.4], [1659024346.0, 9.4], [1659024346.0, 9.7], [1659024346.0, 9.7], [1659024347.0, 10.4], [1659024347.0, 10.4], [1659024347.0, 10.4], [1659024348.0, 12.1], [1659024348.0, 12.1], [1659024349.0, 10.7], [1659024349.0, 10.7], [1659024349.0, 10.7], [1659024350.0, 6.8], [1659024350.0, 6.8], [1659024351.0, 5.9], [1659024351.0, 5.9], [1659024351.0, 5.9], [1659024352.0, 0.0], [1659024352.0, 0.0], [1659024353.0, 0.0], [1659024353.0, 0.0], [1659024353.0, 0.0], [1659024354.0, 7.6], [1659024354.0, 7.6], [1659024355.0, 7.9], [1659024355.0, 7.9], [1659024355.0, 7.9], [1659024356.0, 6.2], [1659024356.0, 6.2], [1659024357.0, 0.0], [1659024357.0, 0.0], [1659024357.0, 0.0], [1659024358.0, 0.0], [1659024358.0, 0.0], [1659024359.0, 0.0], [1659024359.0, 0.0], [1659024359.0, 0.0], [1659024360.0, 0.0], [1659024360.0, 0.0], [1659024361.0, 0.0], [1659024361.0, 0.0], [1659024361.0, 0.0], [1659024362.0, 7.8], [1659024362.0, 7.8], [1659024363.0, 0.0], [1659024363.0, 0.0], [1659024363.0, 0.0], [1659024364.0, 0.0], [1659024364.0, 0.0], [1659024365.0, 11.1], [1659024365.0, 11.1], [1659024365.0, 11.1], [1659024366.0, 12.7], [1659024366.0, 12.7], [1659024367.0, 15.0], [1659024367.0, 15.0], [1659024367.0, 15.0], [1659024368.0, 15.8], [1659024368.0, 15.8], [1659024369.0, 16.8], [1659024369.0, 16.8], [1659024369.0, 16.8], [1659024370.0, 15.7], [1659024370.0, 15.7], [1659024371.0, 15.7], [1659024371.0, 11.5], [1659024371.0, 11.5], [1659024372.0, 9.7], [1659024372.0, 9.7], [1659024373.0, 9.7], [1659024373.0, 10.6], [1659024373.0, 10.6], [1659024374.0, 9.9], [1659024374.0, 9.9], [1659024374.0, 9.9], [1659024375.0, 8.8], [1659024375.0, 8.8], [1659024376.0, 5.5], [1659024376.0, 5.5], [1659024376.0, 5.5], [1659024377.0, 0.0], [1659024377.0, 0.0], [1659024378.0, 0.0], [1659024378.0, 0.0], [1659024378.0, 0.0], [1659024379.0, 11.4], [1659024379.0, 11.4], [1659024380.0, 11.4], [1659024380.0, 13.8], [1659024380.0, 13.8], [1659024381.0, 16.6], [1659024381.0, 16.6], [1659024382.0, 16.6], [1659024382.0, 18.4], [1659024382.0, 18.4], [1659024383.0, 17.5], [1659024383.0, 17.5], [1659024384.0, 17.5], [1659024384.0, 15.3], [1659024384.0, 15.3], [1659024385.0, 12.8], [1659024385.0, 12.8], [1659024385.0, 12.8], [1659024386.0, 12.4], [1659024386.0, 12.4], [1659024387.0, 13.4], [1659024387.0, 13.4], [1659024387.0, 13.4], [1659024388.0, 20.0], [1659024388.0, 20.0], [1659024389.0, 22.6], [1659024389.0, 22.6], [1659024389.0, 22.6], [1659024390.0, 23.6], [1659024390.0, 23.6], [1659024391.0, 23.6], [1659024391.0, 22.1], [1659024391.0, 22.1], [1659024392.0, 19.9], [1659024392.0, 19.9], [1659024392.0, 19.9], [1659024393.0, 17.2], [1659024393.0, 17.2], [1659024394.0, 15.3], [1659024394.0, 15.3], [1659024395.0, 15.3], [1659024395.0, 15.0], [1659024395.0, 15.0], [1659024396.0, 15.2], [1659024396.0, 15.2], [1659024396.0, 15.2], [1659024397.0, 15.8], [1659024397.0, 15.8], [1659024398.0, 16.2], [1659024398.0, 16.2], [1659024398.0, 16.2], [1659024399.0, 16.2], [1659024399.0, 16.2], [1659024400.0, 15.6], [1659024400.0, 15.6], [1659024400.0, 15.6], [1659024401.0, 16.2], [1659024401.0, 16.2], [1659024402.0, 10.3], [1659024402.0, 10.3], [1659024402.0, 10.3], [1659024403.0, 5.1], [1659024403.0, 5.1], [1659024404.0, 0.0], [1659024404.0, 0.0], [1659024404.0, 0.0], [1659024405.0, 0.0], [1659024405.0, 0.0], [1659024406.0, 0.0], [1659024406.0, 0.0], [1659024406.0, 0.0], [1659024407.0, 0.0], [1659024407.0, 0.0], [1659024408.0, 0.0], [1659024408.0, 0.0], [1659024408.0, 0.0], [1659024409.0, 0.0], [1659024409.0, 0.0], [1659024410.0, 0.0], [1659024410.0, 0.0], [1659024410.0, 0.0], [1659024411.0, 7.6], [1659024411.0, 7.6], [1659024412.0, 7.6], [1659024412.0, 10.6], [1659024412.0, 10.6], [1659024413.0, 12.0], [1659024413.0, 12.0], [1659024414.0, 12.0], [1659024414.0, 15.5], [1659024414.0, 15.5], [1659024415.0, 18.8], [1659024415.0, 18.8], [1659024415.0, 18.8], [1659024416.0, 18.7], [1659024416.0, 18.7], [1659024417.0, 18.5], [1659024417.0, 18.5], [1659024417.0, 18.5], [1659024418.0, 18.2], [1659024418.0, 18.2], [1659024419.0, 19.2], [1659024419.0, 19.2], [1659024419.0, 19.2], [1659024420.0, 18.5], [1659024420.0, 18.5], [1659024421.0, 17.9], [1659024421.0, 17.9], [1659024421.0, 17.9], [1659024422.0, 17.1], [1659024422.0, 17.1], [1659024423.0, 16.2], [1659024423.0, 16.2], [1659024423.0, 16.2], [1659024424.0, 14.5], [1659024424.0, 14.5], [1659024425.0, 14.0], [1659024425.0, 14.0], [1659024425.0, 14.0], [1659024426.0, 13.8], [1659024426.0, 13.8], [1659024427.0, 13.4], [1659024427.0, 13.4], [1659024427.0, 13.4], [1659024428.0, 10.7], [1659024428.0, 10.7], [1659024429.0, 6.3], [1659024429.0, 6.3], [1659024429.0, 6.3], [1659024430.0, 0.0], [1659024430.0, 0.0], [1659024431.0, 0.0], [1659024431.0, 0.0], [1659024431.0, 0.0], [1659024432.0, 0.0], [1659024432.0, 0.0], [1659024433.0, 6.7], [1659024433.0, 6.7], [1659024433.0, 6.7], [1659024434.0, 9.0], [1659024434.0, 9.0], [1659024435.0, 11.0], [1659024435.0, 11.0], [1659024435.0, 11.0], [1659024436.0, 10.9], [1659024436.0, 10.9], [1659024437.0, 10.4], [1659024437.0, 10.4], [1659024437.0, 10.4], [1659024438.0, 8.9], [1659024438.0, 8.9], [1659024439.0, 8.0], [1659024439.0, 8.0], [1659024439.0, 8.0], [1659024440.0, 0.0], [1659024440.0, 0.0], [1659024441.0, 6.6], [1659024441.0, 6.6], [1659024441.0, 6.6], [1659024442.0, 7.2], [1659024442.0, 7.2], [1659024443.0, 7.2], [1659024443.0, 5.4], [1659024443.0, 5.4], [1659024444.0, 0.0], [1659024444.0, 0.0], [1659024444.0, 0.0], [1659024445.0, 0.0], [1659024445.0, 0.0], [1659024446.0, 0.0], [1659024446.0, 0.0], [1659024446.0, 0.0], [1659024447.0, 0.0], [1659024447.0, 0.0], [1659024448.0, 0.0], [1659024448.0, 0.0], [1659024448.0, 0.0], [1659024449.0, 0.0], [1659024449.0, 0.0], [1659024450.0, 0.0], [1659024450.0, 0.0], [1659024450.0, 0.0], [1659024451.0, 7.1], [1659024451.0, 7.1], [1659024452.0, 7.1], [1659024452.0, 0.0], [1659024452.0, 0.0], [1659024453.0, 0.0], [1659024453.0, 0.0], [1659024454.0, 0.0], [1659024454.0, 6.9], [1659024454.0, 6.9], [1659024455.0, 7.5], [1659024455.0, 7.5], [1659024455.0, 7.5], [1659024456.0, 6.4], [1659024456.0, 6.4], [1659024457.0, 7.2], [1659024457.0, 7.2], [1659024457.0, 7.2], [1659024458.0, 7.3], [1659024458.0, 7.3], [1659024459.0, 6.2], [1659024459.0, 6.2], [1659024459.0, 6.2], [1659024460.0, 4.7], [1659024460.0, 4.7], [1659024461.0, 4.7], [1659024461.0, 0.0], [1659024461.0, 0.0], [1659024462.0, 0.0], [1659024462.0, 0.0], [1659024463.0, 0.0], [1659024463.0, 0.0], [1659024463.0, 0.0], [1659024464.0, 0.0], [1659024464.0, 0.0], [1659024464.0, 0.0], [1659024465.0, 6.2], [1659024465.0, 6.2], [1659024466.0, 0.0], [1659024466.0, 0.0], [1659024466.0, 0.0], [1659024467.0, 0.0], [1659024467.0, 0.0], [1659024468.0, 0.0], [1659024468.0, 0.0], [1659024468.0, 0.0], [1659024469.0, 0.0], [1659024469.0, 0.0], [1659024470.0, 0.0], [1659024470.0, 0.0], [1659024470.0, 0.0], [1659024471.0, 0.0], [1659024471.0, 0.0], [1659024472.0, 6.7], [1659024472.0, 6.7], [1659024472.0, 6.7], [1659024473.0, 6.3], [1659024473.0, 6.3], [1659024474.0, 6.2], [1659024474.0, 6.2], [1659024474.0, 6.2], [1659024475.0, 7.0], [1659024475.0, 7.0], [1659024476.0, 7.0], [1659024476.0, 7.4], [1659024476.0, 7.4], [1659024477.0, 7.3], [1659024477.0, 7.3], [1659024477.0, 7.3], [1659024478.0, 6.4], [1659024478.0, 6.4], [1659024479.0, 5.7], [1659024479.0, 5.7], [1659024479.0, 5.7], [1659024480.0, 5.6], [1659024480.0, 5.6], [1659024481.0, 5.7], [1659024481.0, 5.7], [1659024481.0, 5.7], [1659024482.0, 0.0], [1659024482.0, 0.0], [1659024483.0, 0.0], [1659024483.0, 0.0], [1659024483.0, 0.0], [1659024484.0, 0.0], [1659024484.0, 0.0], [1659024485.0, 0.0], [1659024485.0, 0.0], [1659024485.0, 0.0], [1659024486.0, 0.0], [1659024486.0, 0.0], [1659024487.0, 0.0], [1659024487.0, 0.0], [1659024487.0, 0.0], [1659024488.0, 0.0], [1659024488.0, 0.0], [1659024489.0, 0.0], [1659024489.0, 0.0], [1659024489.0, 0.0], [1659024490.0, 0.0], [1659024490.0, 0.0], [1659024491.0, 0.0], [1659024491.0, 0.0], [1659024491.0, 0.0], [1659024492.0, 0.0], [1659024492.0, 0.0], [1659024493.0, 0.0], [1659024493.0, 0.0], [1659024493.0, 0.0], [1659024494.0, 12.0], [1659024494.0, 12.0], [1659024494.0, 12.0], [1659024495.0, 14.2], [1659024495.0, 14.2], [1659024496.0, 16.4], [1659024496.0, 16.4], [1659024496.0, 16.4], [1659024497.0, 18.3], [1659024497.0, 18.3], [1659024498.0, 20.3], [1659024498.0, 20.3], [1659024498.0, 20.3], [1659024499.0, 22.7], [1659024499.0, 22.7], [1659024500.0, 24.9], [1659024500.0, 24.9], [1659024500.0, 24.9], [1659024501.0, 27.2], [1659024501.0, 27.2], [1659024502.0, 30.6], [1659024502.0, 30.6], [1659024502.0, 30.6], [1659024503.0, 34.3], [1659024503.0, 34.3], [1659024504.0, 37.4], [1659024504.0, 37.4], [1659024504.0, 37.4], [1659024505.0, 41.8], [1659024505.0, 41.8], [1659024506.0, 45.3], [1659024506.0, 45.3], [1659024506.0, 45.3], [1659024507.0, 47.7], [1659024507.0, 47.7], [1659024508.0, 47.7], [1659024508.0, 50.2], [1659024508.0, 50.2], [1659024509.0, 51.9], [1659024509.0, 51.9], [1659024510.0, 51.9], [1659024510.0, 52.4], [1659024510.0, 52.4], [1659024511.0, 51.5], [1659024511.0, 51.5], [1659024511.0, 51.5], [1659024512.0, 50.5], [1659024512.0, 50.5], [1659024513.0, 50.1], [1659024513.0, 50.1], [1659024514.0, 50.1], [1659024514.0, 49.4], [1659024514.0, 49.4], [1659024515.0, 49.9], [1659024515.0, 49.9], [1659024516.0, 49.9], [1659024516.0, 50.1], [1659024516.0, 50.1], [1659024517.0, 48.7], [1659024517.0, 48.7], [1659024517.0, 48.7], [1659024518.0, 46.6], [1659024518.0, 46.6], [1659024519.0, 44.9], [1659024519.0, 44.9], [1659024519.0, 44.9], [1659024520.0, 43.1], [1659024520.0, 43.1], [1659024521.0, 41.5], [1659024521.0, 41.5], [1659024521.0, 41.5], [1659024522.0, 40.4], [1659024522.0, 40.4], [1659024523.0, 40.9], [1659024523.0, 40.9], [1659024523.0, 40.9], [1659024524.0, 42.0], [1659024524.0, 42.0], [1659024525.0, 44.3], [1659024525.0, 44.3], [1659024525.0, 44.3], [1659024526.0, 46.5], [1659024526.0, 46.5], [1659024527.0, 46.5], [1659024527.0, 48.7], [1659024527.0, 48.7], [1659024528.0, 50.7], [1659024528.0, 50.7], [1659024529.0, 50.7], [1659024529.0, 52.2], [1659024529.0, 52.2], [1659024530.0, 53.1], [1659024530.0, 53.1], [1659024531.0, 53.1], [1659024531.0, 53.4], [1659024531.0, 53.4], [1659024532.0, 54.5], [1659024532.0, 54.5], [1659024532.0, 54.5], [1659024533.0, 55.8], [1659024533.0, 55.8], [1659024534.0, 57.5], [1659024534.0, 57.5], [1659024534.0, 57.5], [1659024535.0, 59.5], [1659024535.0, 59.5], [1659024536.0, 60.9], [1659024536.0, 60.9], [1659024536.0, 60.9], [1659024537.0, 61.4], [1659024537.0, 61.4], [1659024538.0, 60.7], [1659024538.0, 60.7], [1659024538.0, 60.7], [1659024539.0, 60.2], [1659024539.0, 60.2], [1659024540.0, 60.2], [1659024540.0, 60.1], [1659024540.0, 60.1], [1659024541.0, 58.5], [1659024541.0, 58.5], [1659024542.0, 58.5], [1659024542.0, 56.0], [1659024542.0, 56.0], [1659024543.0, 52.5], [1659024543.0, 52.5], [1659024543.0, 52.5], [1659024544.0, 49.4], [1659024544.0, 49.4], [1659024545.0, 47.6], [1659024545.0, 47.6], [1659024545.0, 47.6], [1659024546.0, 47.8], [1659024546.0, 47.8], [1659024547.0, 47.8], [1659024547.0, 49.7], [1659024547.0, 49.7], [1659024548.0, 51.3], [1659024548.0, 51.3], [1659024549.0, 51.3], [1659024549.0, 53.3], [1659024549.0, 53.3], [1659024550.0, 55.0], [1659024550.0, 55.0], [1659024550.0, 55.0], [1659024551.0, 57.3], [1659024551.0, 57.3], [1659024552.0, 58.0], [1659024552.0, 58.0], [1659024552.0, 58.0], [1659024553.0, 58.9], [1659024553.0, 58.9], [1659024554.0, 61.0], [1659024554.0, 61.0], [1659024554.0, 61.0], [1659024555.0, 62.0], [1659024555.0, 62.0], [1659024556.0, 62.1], [1659024556.0, 62.1], [1659024556.0, 62.1], [1659024557.0, 62.4], [1659024557.0, 62.4], [1659024558.0, 63.2], [1659024558.0, 63.2], [1659024558.0, 63.2], [1659024559.0, 63.6], [1659024559.0, 63.6], [1659024560.0, 64.3], [1659024560.0, 64.3], [1659024560.0, 64.3], [1659024561.0, 64.0], [1659024561.0, 64.0], [1659024562.0, 64.0], [1659024562.0, 63.3], [1659024562.0, 63.3], [1659024563.0, 65.6], [1659024563.0, 65.6], [1659024564.0, 65.6], [1659024564.0, 67.8], [1659024564.0, 67.8], [1659024565.0, 69.2], [1659024565.0, 69.2], [1659024566.0, 69.2], [1659024566.0, 71.0], [1659024566.0, 71.0], [1659024567.0, 72.4], [1659024567.0, 72.4], [1659024567.0, 72.4], [1659024568.0, 73.6], [1659024568.0, 73.6], [1659024569.0, 75.3], [1659024569.0, 75.3], [1659024569.0, 75.3], [1659024570.0, 76.5], [1659024570.0, 76.5], [1659024571.0, 78.0], [1659024571.0, 78.0], [1659024571.0, 78.0], [1659024572.0, 79.1], [1659024572.0, 79.1], [1659024573.0, 80.2], [1659024573.0, 80.2], [1659024573.0, 80.2], [1659024574.0, 81.2], [1659024574.0, 81.2], [1659024575.0, 82.3], [1659024575.0, 82.3], [1659024575.0, 82.3], [1659024576.0, 83.9], [1659024576.0, 83.9], [1659024577.0, 83.9], [1659024577.0, 84.8], [1659024577.0, 84.8], [1659024578.0, 85.4], [1659024578.0, 85.4], [1659024578.0, 85.4], [1659024579.0, 86.0], [1659024579.0, 86.0], [1659024580.0, 85.9], [1659024580.0, 85.9], [1659024580.0, 85.9], [1659024581.0, 85.5], [1659024581.0, 85.5], [1659024582.0, 84.8], [1659024582.0, 84.8], [1659024582.0, 84.8], [1659024583.0, 84.3], [1659024583.0, 84.3], [1659024584.0, 84.1], [1659024584.0, 84.1], [1659024584.0, 84.1], [1659024585.0, 83.5], [1659024585.0, 83.5], [1659024586.0, 83.5], [1659024586.0, 83.2], [1659024586.0, 83.2], [1659024587.0, 82.4], [1659024587.0, 82.4], [1659024588.0, 82.4], [1659024588.0, 80.9], [1659024588.0, 80.9], [1659024589.0, 80.0], [1659024589.0, 80.0], [1659024589.0, 80.0], [1659024590.0, 79.9], [1659024590.0, 79.9], [1659024591.0, 79.0], [1659024591.0, 79.0], [1659024591.0, 79.0], [1659024592.0, 78.7], [1659024592.0, 78.7], [1659024593.0, 78.2], [1659024593.0, 78.2], [1659024593.0, 78.2], [1659024594.0, 77.8], [1659024594.0, 77.8], [1659024595.0, 77.6], [1659024595.0, 77.6], [1659024595.0, 77.6], [1659024596.0, 77.3], [1659024596.0, 77.3], [1659024597.0, 77.5], [1659024597.0, 77.5], [1659024597.0, 77.5], [1659024598.0, 78.0], [1659024598.0, 78.0], [1659024599.0, 78.4], [1659024599.0, 78.4], [1659024599.0, 78.4], [1659024600.0, 79.1], [1659024600.0, 79.1], [1659024601.0, 79.9], [1659024601.0, 79.9], [1659024601.0, 79.9], [1659024602.0, 80.7], [1659024602.0, 80.7], [1659024603.0, 80.7], [1659024603.0, 81.6], [1659024603.0, 81.6], [1659024604.0, 82.6], [1659024604.0, 82.6], [1659024605.0, 82.6], [1659024605.0, 83.5], [1659024605.0, 83.5], [1659024606.0, 84.8], [1659024606.0, 84.8], [1659024606.0, 84.8], [1659024607.0, 85.9], [1659024607.0, 85.9], [1659024608.0, 87.1], [1659024608.0, 87.1], [1659024608.0, 87.1], [1659024609.0, 88.3], [1659024609.0, 88.3], [1659024610.0, 89.3], [1659024610.0, 89.3], [1659024610.0, 89.3], [1659024611.0, 90.3], [1659024611.0, 90.3], [1659024612.0, 91.2], [1659024612.0, 91.2], [1659024612.0, 91.2], [1659024613.0, 93.3], [1659024613.0, 93.3], [1659024614.0, 95.2], [1659024614.0, 95.2], [1659024614.0, 95.2], [1659024615.0, 96.7], [1659024615.0, 96.7], [1659024616.0, 98.2], [1659024616.0, 98.2], [1659024616.0, 98.2], [1659024617.0, 99.1], [1659024617.0, 99.1], [1659024618.0, 99.2], [1659024618.0, 99.2], [1659024618.0, 99.2], [1659024619.0, 98.9], [1659024619.0, 98.9], [1659024620.0, 99.1], [1659024620.0, 99.1], [1659024620.0, 99.1], [1659024621.0, 99.1], [1659024621.0, 99.1], [1659024622.0, 99.1], [1659024622.0, 99.1], [1659024622.0, 99.1], [1659024623.0, 99.0], [1659024623.0, 99.0], [1659024624.0, 98.9], [1659024624.0, 98.9], [1659024624.0, 98.9], [1659024625.0, 99.0], [1659024625.0, 99.0], [1659024626.0, 98.9], [1659024626.0, 98.9], [1659024626.0, 98.9], [1659024627.0, 98.8], [1659024627.0, 98.8], [1659024628.0, 98.6], [1659024628.0, 98.6], [1659024628.0, 98.6], [1659024629.0, 98.7], [1659024629.0, 98.7], [1659024630.0, 98.7], [1659024630.0, 98.0], [1659024630.0, 98.0], [1659024631.0, 97.6], [1659024631.0, 97.6], [1659024632.0, 97.6], [1659024632.0, 97.8], [1659024632.0, 97.8], [1659024633.0, 97.9], [1659024633.0, 97.9], [1659024634.0, 97.9], [1659024634.0, 97.9], [1659024634.0, 97.9], [1659024635.0, 97.9], [1659024635.0, 97.9], [1659024636.0, 97.9], [1659024636.0, 98.1], [1659024636.0, 98.1], [1659024637.0, 98.1], [1659024637.0, 98.1], [1659024638.0, 98.1], [1659024638.0, 98.2], [1659024638.0, 98.2], [1659024639.0, 98.2], [1659024639.0, 98.2], [1659024640.0, 98.2], [1659024640.0, 97.7], [1659024640.0, 97.7], [1659024641.0, 96.6], [1659024641.0, 96.6], [1659024642.0, 96.6], [1659024642.0, 95.9], [1659024642.0, 95.9], [1659024643.0, 95.2], [1659024643.0, 95.2], [1659024644.0, 95.2], [1659024644.0, 94.5], [1659024644.0, 94.5], [1659024645.0, 91.8], [1659024645.0, 91.8], [1659024646.0, 91.8], [1659024646.0, 87.2], [1659024646.0, 87.2], [1659024647.0, 84.6], [1659024647.0, 84.6], [1659024647.0, 84.6], [1659024648.0, 83.4], [1659024648.0, 83.4], [1659024649.0, 81.9], [1659024649.0, 81.9], [1659024649.0, 81.9], [1659024650.0, 80.4], [1659024650.0, 80.4], [1659024651.0, 76.6], [1659024651.0, 76.6], [1659024651.0, 76.6], [1659024652.0, 72.7], [1659024652.0, 72.7], [1659024653.0, 69.3], [1659024653.0, 69.3], [1659024653.0, 69.3], [1659024654.0, 67.4], [1659024654.0, 67.4], [1659024655.0, 66.8], [1659024655.0, 66.8], [1659024655.0, 66.8], [1659024656.0, 68.1], [1659024656.0, 68.1], [1659024657.0, 69.6], [1659024657.0, 69.6], [1659024657.0, 69.6], [1659024658.0, 70.9], [1659024658.0, 70.9], [1659024659.0, 72.1], [1659024659.0, 72.1], [1659024659.0, 72.1], [1659024660.0, 73.3], [1659024660.0, 73.3], [1659024661.0, 74.3], [1659024661.0, 74.3], [1659024661.0, 74.3], [1659024662.0, 75.2], [1659024662.0, 75.2], [1659024663.0, 75.3], [1659024663.0, 75.3], [1659024663.0, 75.3], [1659024664.0, 75.3], [1659024664.0, 75.3], [1659024665.0, 76.2], [1659024665.0, 76.2], [1659024665.0, 76.2], [1659024666.0, 77.1], [1659024666.0, 77.1], [1659024667.0, 77.8], [1659024667.0, 77.8], [1659024667.0, 77.8], [1659024668.0, 77.8], [1659024668.0, 77.8], [1659024669.0, 77.7], [1659024669.0, 77.7], [1659024669.0, 77.7], [1659024670.0, 78.9], [1659024670.0, 78.9], [1659024671.0, 80.0], [1659024671.0, 80.0], [1659024671.0, 80.0], [1659024672.0, 81.1], [1659024672.0, 81.1], [1659024673.0, 81.9], [1659024673.0, 81.9], [1659024673.0, 81.9], [1659024674.0, 83.0], [1659024674.0, 83.0], [1659024675.0, 83.9], [1659024675.0, 83.9], [1659024675.0, 83.9], [1659024676.0, 84.5], [1659024676.0, 84.5], [1659024677.0, 85.1], [1659024677.0, 85.1], [1659024677.0, 85.1], [1659024678.0, 85.8], [1659024678.0, 85.8], [1659024679.0, 85.1], [1659024679.0, 85.1], [1659024679.0, 85.1], [1659024680.0, 85.0], [1659024680.0, 85.0], [1659024681.0, 84.8], [1659024681.0, 84.8], [1659024681.0, 84.8], [1659024682.0, 83.7], [1659024682.0, 83.7], [1659024683.0, 82.5], [1659024683.0, 82.5], [1659024683.0, 82.5], [1659024684.0, 81.8], [1659024684.0, 81.8], [1659024685.0, 81.8], [1659024685.0, 80.9], [1659024685.0, 80.9], [1659024686.0, 80.2], [1659024686.0, 80.2], [1659024687.0, 80.2], [1659024687.0, 79.8], [1659024687.0, 79.8], [1659024688.0, 78.7], [1659024688.0, 78.7], [1659024689.0, 78.7], [1659024689.0, 77.5], [1659024689.0, 77.5], [1659024690.0, 76.7], [1659024690.0, 76.7], [1659024690.0, 76.7], [1659024691.0, 76.4], [1659024691.0, 76.4], [1659024692.0, 76.0], [1659024692.0, 76.0], [1659024692.0, 76.0], [1659024693.0, 75.8], [1659024693.0, 75.8], [1659024694.0, 75.9], [1659024694.0, 75.9], [1659024694.0, 75.9], [1659024695.0, 75.9], [1659024695.0, 75.9], [1659024696.0, 75.8], [1659024696.0, 75.8], [1659024696.0, 75.8], [1659024697.0, 75.5], [1659024697.0, 75.5], [1659024698.0, 74.7], [1659024698.0, 74.7], [1659024698.0, 74.7], [1659024699.0, 73.1], [1659024699.0, 73.1], [1659024700.0, 71.6], [1659024700.0, 71.6], [1659024700.0, 71.6], [1659024701.0, 69.7], [1659024701.0, 69.7], [1659024702.0, 67.9], [1659024702.0, 67.9], [1659024702.0, 67.9], [1659024703.0, 66.8], [1659024703.0, 66.8], [1659024704.0, 66.8], [1659024704.0, 66.2], [1659024704.0, 66.2], [1659024705.0, 65.8], [1659024705.0, 65.8], [1659024705.0, 65.8], [1659024706.0, 65.2], [1659024706.0, 65.2], [1659024707.0, 64.8], [1659024707.0, 64.8], [1659024707.0, 64.8], [1659024708.0, 63.7], [1659024708.0, 63.7], [1659024709.0, 63.7], [1659024709.0, 63.7], [1659024709.0, 63.7], [1659024710.0, 64.6], [1659024710.0, 64.6], [1659024711.0, 65.8], [1659024711.0, 65.8], [1659024711.0, 65.8], [1659024712.0, 66.5], [1659024712.0, 66.5], [1659024713.0, 65.0], [1659024713.0, 65.0], [1659024713.0, 65.0], [1659024714.0, 63.3], [1659024714.0, 63.3], [1659024715.0, 62.8], [1659024715.0, 62.8], [1659024715.0, 62.8], [1659024716.0, 63.2], [1659024716.0, 63.2], [1659024717.0, 63.2], [1659024717.0, 63.7], [1659024717.0, 63.7], [1659024718.0, 63.0], [1659024718.0, 63.0], [1659024719.0, 63.0], [1659024719.0, 61.6], [1659024719.0, 61.6], [1659024720.0, 61.4], [1659024720.0, 61.4], [1659024721.0, 61.4], [1659024721.0, 59.9], [1659024721.0, 59.9], [1659024722.0, 57.7], [1659024722.0, 57.7], [1659024722.0, 57.7], [1659024723.0, 56.5], [1659024723.0, 56.5], [1659024724.0, 55.5], [1659024724.0, 55.5], [1659024724.0, 55.5], [1659024725.0, 55.5], [1659024725.0, 55.5], [1659024726.0, 55.0], [1659024726.0, 55.0], [1659024726.0, 55.0], [1659024727.0, 55.1], [1659024727.0, 55.1], [1659024728.0, 55.7], [1659024728.0, 55.7], [1659024728.0, 55.7], [1659024729.0, 55.7], [1659024729.0, 55.7], [1659024730.0, 54.9], [1659024730.0, 54.9], [1659024730.0, 54.9], [1659024731.0, 52.7], [1659024731.0, 52.7], [1659024732.0, 46.8], [1659024732.0, 46.8], [1659024732.0, 46.8], [1659024733.0, 43.1], [1659024733.0, 43.1], [1659024734.0, 39.9], [1659024734.0, 39.9], [1659024734.0, 39.9], [1659024735.0, 37.8], [1659024735.0, 37.8], [1659024736.0, 37.8], [1659024736.0, 34.0], [1659024736.0, 34.0], [1659024737.0, 30.9], [1659024737.0, 30.9], [1659024737.0, 30.9], [1659024738.0, 28.8], [1659024738.0, 28.8], [1659024739.0, 25.7], [1659024739.0, 25.7], [1659024739.0, 25.7], [1659024740.0, 23.9], [1659024740.0, 23.9], [1659024741.0, 23.0], [1659024741.0, 23.0], [1659024741.0, 23.0], [1659024742.0, 25.4], [1659024742.0, 25.4], [1659024743.0, 25.4], [1659024743.0, 27.7], [1659024743.0, 27.7], [1659024744.0, 28.5], [1659024744.0, 28.5], [1659024744.0, 28.5], [1659024745.0, 29.2], [1659024745.0, 29.2], [1659024746.0, 30.7], [1659024746.0, 30.7], [1659024746.0, 30.7], [1659024747.0, 32.0], [1659024747.0, 32.0], [1659024748.0, 33.3], [1659024748.0, 33.3], [1659024748.0, 33.3], [1659024749.0, 33.6], [1659024749.0, 33.6], [1659024750.0, 35.4], [1659024750.0, 35.4], [1659024750.0, 35.4], [1659024751.0, 36.8], [1659024751.0, 36.8], [1659024752.0, 39.5], [1659024752.0, 39.5], [1659024752.0, 39.5], [1659024753.0, 41.7], [1659024753.0, 41.7], [1659024754.0, 41.7], [1659024754.0, 44.1], [1659024754.0, 44.1], [1659024755.0, 46.4], [1659024755.0, 46.4], [1659024756.0, 46.4], [1659024756.0, 49.1], [1659024756.0, 49.1], [1659024757.0, 51.2], [1659024757.0, 51.2], [1659024757.0, 51.2], [1659024758.0, 53.4], [1659024758.0, 53.4], [1659024759.0, 55.2], [1659024759.0, 55.2], [1659024759.0, 55.2], [1659024760.0, 57.4], [1659024760.0, 57.4], [1659024761.0, 59.5], [1659024761.0, 59.5], [1659024761.0, 59.5], [1659024762.0, 60.9], [1659024762.0, 60.9], [1659024763.0, 62.6], [1659024763.0, 62.6], [1659024763.0, 62.6], [1659024764.0, 63.2], [1659024764.0, 63.2], [1659024765.0, 62.6], [1659024765.0, 62.6], [1659024765.0, 62.6], [1659024766.0, 62.9], [1659024766.0, 62.9], [1659024767.0, 63.5], [1659024767.0, 63.5], [1659024767.0, 63.5], [1659024768.0, 64.5], [1659024768.0, 64.5], [1659024769.0, 65.5], [1659024769.0, 65.5], [1659024769.0, 65.5], [1659024770.0, 66.7], [1659024770.0, 66.7], [1659024771.0, 66.7], [1659024771.0, 68.2], [1659024771.0, 68.2], [1659024772.0, 70.1], [1659024772.0, 70.1], [1659024772.0, 70.1], [1659024773.0, 72.5], [1659024773.0, 72.5], [1659024774.0, 74.4], [1659024774.0, 74.4], [1659024774.0, 74.4], [1659024775.0, 75.8], [1659024775.0, 75.8], [1659024776.0, 76.7], [1659024776.0, 76.7], [1659024776.0, 76.7], [1659024777.0, 77.1], [1659024777.0, 77.1], [1659024778.0, 76.0], [1659024778.0, 76.0], [1659024778.0, 76.0], [1659024779.0, 72.3], [1659024779.0, 72.3], [1659024780.0, 69.3], [1659024780.0, 69.3], [1659024780.0, 69.3], [1659024781.0, 68.7], [1659024781.0, 68.7], [1659024782.0, 68.7], [1659024782.0, 68.7], [1659024782.0, 68.7], [1659024783.0, 69.7], [1659024783.0, 69.7], [1659024784.0, 69.7], [1659024784.0, 70.6], [1659024784.0, 70.6], [1659024785.0, 70.8], [1659024785.0, 70.8], [1659024786.0, 70.8], [1659024786.0, 70.5], [1659024786.0, 70.5], [1659024787.0, 70.5], [1659024787.0, 70.5], [1659024788.0, 70.5], [1659024788.0, 70.2], [1659024788.0, 70.2], [1659024789.0, 70.1], [1659024789.0, 70.1], [1659024789.0, 70.1], [1659024790.0, 69.8], [1659024790.0, 69.8], [1659024791.0, 69.7], [1659024791.0, 69.7], [1659024791.0, 69.7], [1659024792.0, 69.8], [1659024792.0, 69.8], [1659024793.0, 70.3], [1659024793.0, 70.3], [1659024793.0, 70.3], [1659024794.0, 71.2], [1659024794.0, 71.2], [1659024795.0, 71.5], [1659024795.0, 71.5], [1659024795.0, 71.5], [1659024796.0, 70.4], [1659024796.0, 70.4], [1659024797.0, 69.8], [1659024797.0, 69.8], [1659024797.0, 69.8], [1659024798.0, 70.0], [1659024798.0, 70.0], [1659024799.0, 70.4], [1659024799.0, 70.4], [1659024799.0, 70.4], [1659024800.0, 70.0], [1659024800.0, 70.0], [1659024801.0, 69.3], [1659024801.0, 69.3], [1659024801.0, 69.3], [1659024802.0, 68.9], [1659024802.0, 68.9], [1659024803.0, 68.9], [1659024803.0, 69.9], [1659024803.0, 69.9], [1659024804.0, 72.5], [1659024804.0, 72.5], [1659024805.0, 72.5], [1659024805.0, 73.4], [1659024805.0, 73.4], [1659024806.0, 73.7], [1659024806.0, 73.7], [1659024806.0, 73.7], [1659024807.0, 73.7], [1659024807.0, 73.7], [1659024808.0, 72.8], [1659024808.0, 72.8], [1659024808.0, 72.8], [1659024809.0, 71.5], [1659024809.0, 71.5], [1659024810.0, 70.7], [1659024810.0, 70.7], [1659024810.0, 70.7], [1659024811.0, 70.5], [1659024811.0, 70.5], [1659024812.0, 71.1], [1659024812.0, 71.1], [1659024812.0, 71.1], [1659024813.0, 71.5], [1659024813.0, 71.5], [1659024814.0, 72.6], [1659024814.0, 72.6], [1659024814.0, 72.6], [1659024815.0, 73.6], [1659024815.0, 73.6], [1659024816.0, 74.5], [1659024816.0, 74.5], [1659024816.0, 74.5], [1659024817.0, 75.5], [1659024817.0, 75.5], [1659024818.0, 76.2], [1659024818.0, 76.2], [1659024818.0, 76.2], [1659024819.0, 76.9], [1659024819.0, 76.9], [1659024820.0, 76.9], [1659024820.0, 77.1], [1659024820.0, 77.1], [1659024821.0, 77.0], [1659024821.0, 77.0], [1659024821.0, 77.0], [1659024822.0, 77.0], [1659024822.0, 77.0], [1659024823.0, 76.7], [1659024823.0, 76.7], [1659024823.0, 76.7], [1659024824.0, 76.4], [1659024824.0, 76.4], [1659024825.0, 76.5], [1659024825.0, 76.5], [1659024825.0, 76.5], [1659024826.0, 76.6], [1659024826.0, 76.6], [1659024827.0, 76.4], [1659024827.0, 76.4], [1659024827.0, 76.4], [1659024828.0, 75.8], [1659024828.0, 75.8], [1659024829.0, 74.6], [1659024829.0, 74.6], [1659024829.0, 74.6], [1659024830.0, 73.2], [1659024830.0, 73.2], [1659024831.0, 72.0], [1659024831.0, 72.0], [1659024831.0, 72.0], [1659024832.0, 70.7], [1659024832.0, 70.7], [1659024833.0, 69.5], [1659024833.0, 69.5], [1659024833.0, 69.5], [1659024834.0, 66.7], [1659024834.0, 66.7], [1659024835.0, 62.7], [1659024835.0, 62.7], [1659024835.0, 62.7], [1659024836.0, 59.4], [1659024836.0, 59.4], [1659024837.0, 55.3], [1659024837.0, 55.3], [1659024837.0, 55.3], [1659024838.0, 52.6], [1659024838.0, 52.6], [1659024839.0, 51.3], [1659024839.0, 51.3], [1659024839.0, 51.3], [1659024840.0, 49.1], [1659024840.0, 49.1], [1659024841.0, 45.1], [1659024841.0, 45.1], [1659024841.0, 45.1], [1659024842.0, 42.9], [1659024842.0, 42.9], [1659024843.0, 42.5], [1659024843.0, 42.5], [1659024843.0, 42.5], [1659024844.0, 43.3], [1659024844.0, 43.3], [1659024845.0, 43.3], [1659024845.0, 44.7], [1659024845.0, 44.7], [1659024846.0, 46.5], [1659024846.0, 46.5], [1659024846.0, 46.5], [1659024847.0, 48.6], [1659024847.0, 48.6], [1659024848.0, 50.5], [1659024848.0, 50.5], [1659024848.0, 50.5], [1659024849.0, 51.9], [1659024849.0, 51.9], [1659024850.0, 53.1], [1659024850.0, 53.1], [1659024850.0, 53.1], [1659024851.0, 53.6], [1659024851.0, 53.6], [1659024852.0, 54.0], [1659024852.0, 54.0], [1659024852.0, 54.0], [1659024853.0, 53.4], [1659024853.0, 53.4], [1659024854.0, 53.2], [1659024854.0, 53.2], [1659024854.0, 53.2], [1659024855.0, 53.5], [1659024855.0, 53.5], [1659024856.0, 53.9], [1659024856.0, 53.9], [1659024856.0, 53.9], [1659024857.0, 54.6], [1659024857.0, 54.6], [1659024858.0, 54.6], [1659024858.0, 54.6], [1659024858.0, 54.6], [1659024859.0, 53.8], [1659024859.0, 53.8], [1659024859.0, 53.8], [1659024860.0, 52.7], [1659024860.0, 52.7], [1659024861.0, 49.7], [1659024861.0, 49.7], [1659024861.0, 49.7], [1659024862.0, 44.7], [1659024862.0, 44.7], [1659024863.0, 41.2], [1659024863.0, 41.2], [1659024863.0, 41.2], [1659024864.0, 36.9], [1659024864.0, 36.9], [1659024865.0, 36.9], [1659024865.0, 30.0], [1659024865.0, 30.0], [1659024866.0, 23.8], [1659024866.0, 23.8], [1659024867.0, 23.8], [1659024867.0, 15.7], [1659024867.0, 15.7], [1659024868.0, 13.0], [1659024868.0, 13.0], [1659024868.0, 13.0], [1659024869.0, 16.4], [1659024869.0, 16.4], [1659024870.0, 22.4], [1659024870.0, 22.4], [1659024870.0, 22.4], [1659024871.0, 26.6], [1659024871.0, 26.6], [1659024872.0, 29.9], [1659024872.0, 29.9], [1659024872.0, 29.9], [1659024873.0, 33.4], [1659024873.0, 33.4], [1659024874.0, 36.5], [1659024874.0, 36.5], [1659024874.0, 36.5], [1659024875.0, 37.5], [1659024875.0, 37.5], [1659024876.0, 36.3], [1659024876.0, 36.3], [1659024876.0, 36.3], [1659024877.0, 34.7], [1659024877.0, 34.7], [1659024878.0, 32.8], [1659024878.0, 32.8], [1659024878.0, 32.8], [1659024879.0, 30.4], [1659024879.0, 30.4], [1659024880.0, 30.3], [1659024880.0, 30.3], [1659024880.0, 30.3], [1659024881.0, 33.2], [1659024881.0, 33.2], [1659024882.0, 36.2], [1659024882.0, 36.2], [1659024882.0, 36.2], [1659024883.0, 40.3], [1659024883.0, 40.3], [1659024884.0, 43.3], [1659024884.0, 43.3], [1659024884.0, 43.3], [1659024885.0, 46.8], [1659024885.0, 46.8], [1659024886.0, 46.8], [1659024886.0, 49.8], [1659024886.0, 49.8], [1659024887.0, 52.6], [1659024887.0, 52.6], [1659024887.0, 52.6], [1659024888.0, 55.2], [1659024888.0, 55.2], [1659024889.0, 57.8], [1659024889.0, 57.8], [1659024889.0, 57.8], [1659024890.0, 59.6], [1659024890.0, 59.6], [1659024891.0, 61.5], [1659024891.0, 61.5], [1659024891.0, 61.5], [1659024892.0, 63.3], [1659024892.0, 63.3], [1659024893.0, 65.2], [1659024893.0, 65.2], [1659024893.0, 65.2], [1659024894.0, 66.8], [1659024894.0, 66.8], [1659024895.0, 66.8], [1659024895.0, 68.0], [1659024895.0, 68.0], [1659024896.0, 69.7], [1659024896.0, 69.7], [1659024897.0, 69.7], [1659024897.0, 71.4], [1659024897.0, 71.4], [1659024898.0, 73.2], [1659024898.0, 73.2], [1659024899.0, 73.2], [1659024899.0, 72.6], [1659024899.0, 72.6], [1659024900.0, 71.2], [1659024900.0, 71.2], [1659024901.0, 71.2], [1659024901.0, 70.1], [1659024901.0, 70.1], [1659024902.0, 70.1], [1659024902.0, 70.1], [1659024903.0, 70.1], [1659024903.0, 70.4], [1659024903.0, 70.4], [1659024904.0, 70.8], [1659024904.0, 70.8], [1659024905.0, 70.8], [1659024905.0, 71.4], [1659024905.0, 71.4], [1659024906.0, 72.0], [1659024906.0, 72.0], [1659024907.0, 72.0], [1659024907.0, 72.7], [1659024907.0, 72.7], [1659024908.0, 73.2], [1659024908.0, 73.2], [1659024908.0, 73.2], [1659024909.0, 73.8], [1659024909.0, 73.8], [1659024910.0, 74.5], [1659024910.0, 74.5], [1659024910.0, 74.5], [1659024911.0, 75.0], [1659024911.0, 75.0], [1659024912.0, 75.4], [1659024912.0, 75.4], [1659024912.0, 75.4], [1659024913.0, 75.7], [1659024913.0, 75.7], [1659024914.0, 75.8], [1659024914.0, 75.8], [1659024914.0, 75.8], [1659024915.0, 75.6], [1659024915.0, 75.6], [1659024916.0, 74.4], [1659024916.0, 74.4], [1659024916.0, 74.4], [1659024917.0, 73.0], [1659024917.0, 73.0], [1659024918.0, 72.6], [1659024918.0, 72.6], [1659024918.0, 72.6], [1659024919.0, 72.6], [1659024919.0, 72.6], [1659024920.0, 72.6], [1659024920.0, 72.6], [1659024920.0, 72.6], [1659024921.0, 72.5], [1659024921.0, 72.5], [1659024922.0, 72.4], [1659024922.0, 72.4], [1659024922.0, 72.4], [1659024923.0, 72.2], [1659024923.0, 72.2], [1659024924.0, 72.2], [1659024924.0, 71.8], [1659024924.0, 71.8], [1659024925.0, 71.4], [1659024925.0, 71.4], [1659024925.0, 71.4], [1659024926.0, 71.3], [1659024926.0, 71.3], [1659024927.0, 70.9], [1659024927.0, 70.9], [1659024927.0, 70.9], [1659024928.0, 70.4], [1659024928.0, 70.4], [1659024929.0, 69.6], [1659024929.0, 69.6], [1659024929.0, 69.6], [1659024930.0, 68.7], [1659024930.0, 68.7], [1659024931.0, 66.3], [1659024931.0, 66.3], [1659024931.0, 66.3], [1659024932.0, 63.5], [1659024932.0, 63.5], [1659024933.0, 60.6], [1659024933.0, 60.6], [1659024933.0, 60.6], [1659024934.0, 56.2], [1659024934.0, 56.2], [1659024935.0, 56.2], [1659024935.0, 52.2], [1659024935.0, 52.2], [1659024936.0, 47.0], [1659024936.0, 47.0], [1659024936.0, 47.0], [1659024937.0, 43.6], [1659024937.0, 43.6], [1659024938.0, 38.4], [1659024938.0, 38.4], [1659024938.0, 38.4], [1659024939.0, 34.1], [1659024939.0, 34.1], [1659024940.0, 30.9], [1659024940.0, 30.9], [1659024940.0, 30.9], [1659024941.0, 28.3], [1659024941.0, 28.3], [1659024942.0, 26.5], [1659024942.0, 26.5], [1659024942.0, 26.5], [1659024943.0, 27.2], [1659024943.0, 27.2], [1659024944.0, 29.4], [1659024944.0, 29.4], [1659024944.0, 29.4], [1659024945.0, 31.3], [1659024945.0, 31.3], [1659024946.0, 32.9], [1659024946.0, 32.9], [1659024946.0, 32.9], [1659024947.0, 36.1], [1659024947.0, 36.1], [1659024948.0, 39.3], [1659024948.0, 39.3], [1659024948.0, 39.3], [1659024949.0, 42.1], [1659024949.0, 42.1], [1659024950.0, 45.3], [1659024950.0, 45.3], [1659024950.0, 45.3], [1659024951.0, 47.4], [1659024951.0, 47.4], [1659024952.0, 48.0], [1659024952.0, 48.0], [1659024952.0, 48.0], [1659024953.0, 47.0], [1659024953.0, 47.0], [1659024954.0, 46.1], [1659024954.0, 46.1], [1659024954.0, 46.1], [1659024955.0, 44.9], [1659024955.0, 44.9], [1659024956.0, 43.9], [1659024956.0, 43.9], [1659024956.0, 43.9], [1659024957.0, 42.9], [1659024957.0, 42.9], [1659024958.0, 41.5], [1659024958.0, 41.5], [1659024958.0, 41.5], [1659024959.0, 39.9], [1659024959.0, 39.9], [1659024960.0, 37.3], [1659024960.0, 37.3], [1659024960.0, 37.3], [1659024961.0, 35.0], [1659024961.0, 35.0], [1659024962.0, 32.8], [1659024962.0, 32.8], [1659024962.0, 32.8], [1659024963.0, 34.1], [1659024963.0, 34.1], [1659024964.0, 38.6], [1659024964.0, 38.6], [1659024964.0, 38.6], [1659024965.0, 42.6], [1659024965.0, 42.6], [1659024966.0, 45.9], [1659024966.0, 45.9], [1659024966.0, 45.9], [1659024967.0, 46.5], [1659024967.0, 46.5], [1659024968.0, 47.7], [1659024968.0, 47.7], [1659024968.0, 47.7], [1659024969.0, 50.0], [1659024969.0, 50.0], [1659024970.0, 50.0], [1659024970.0, 51.4], [1659024970.0, 51.4], [1659024971.0, 49.9], [1659024971.0, 49.9], [1659024971.0, 49.9], [1659024972.0, 47.3], [1659024972.0, 47.3], [1659024973.0, 39.9], [1659024973.0, 39.9], [1659024973.0, 39.9], [1659024974.0, 34.8], [1659024974.0, 34.8], [1659024975.0, 30.8], [1659024975.0, 30.8], [1659024975.0, 30.8], [1659024976.0, 27.7], [1659024976.0, 27.7], [1659024977.0, 22.7], [1659024977.0, 22.7], [1659024977.0, 22.7], [1659024978.0, 15.2], [1659024978.0, 15.2], [1659024979.0, 9.6], [1659024979.0, 9.6], [1659024979.0, 9.6], [1659024980.0, 0.0], [1659024980.0, 0.0], [1659024981.0, 0.0], [1659024981.0, 0.0], [1659024981.0, 0.0], [1659024982.0, 0.0], [1659024982.0, 0.0], [1659024983.0, 0.0], [1659024983.0, 0.0], [1659024983.0, 0.0], [1659024984.0, 0.0], [1659024984.0, 0.0], [1659024985.0, 0.0], [1659024985.0, 0.0], [1659024985.0, 0.0], [1659024986.0, 0.0], [1659024986.0, 0.0], [1659024987.0, 0.0], [1659024987.0, 0.0], [1659024987.0, 0.0], [1659024988.0, 0.0], [1659024988.0, 0.0], [1659024988.0, 0.0], [1659024989.0, 0.0], [1659024989.0, 0.0], [1659024990.0, 0.0], [1659024990.0, 0.0], [1659024990.0, 0.0], [1659024991.0, 0.0], [1659024991.0, 0.0], [1659024992.0, 0.0], [1659024992.0, 0.0], [1659024992.0, 0.0], [1659024993.0, 0.0], [1659024993.0, 0.0], [1659024994.0, 0.0], [1659024994.0, 0.0], [1659024994.0, 0.0], [1659024995.0, 0.0], [1659024995.0, 0.0], [1659024996.0, 0.0], [1659024996.0, 0.0], [1659024996.0, 0.0], [1659024997.0, 11.3], [1659024997.0, 11.3], [1659024998.0, 17.1], [1659024998.0, 17.1], [1659024998.0, 17.1], [1659024999.0, 15.7], [1659024999.0, 15.7], [1659025000.0, 11.5], [1659025000.0, 11.5], [1659025000.0, 11.5], [1659025001.0, 9.1], [1659025001.0, 9.1], [1659025002.0, 9.1], [1659025002.0, 8.4], [1659025002.0, 8.4], [1659025003.0, 14.0], [1659025003.0, 14.0], [1659025004.0, 14.0], [1659025004.0, 23.1], [1659025004.0, 23.1], [1659025005.0, 28.1], [1659025005.0, 28.1], [1659025005.0, 28.1], [1659025006.0, 33.1], [1659025006.0, 33.1], [1659025007.0, 37.5], [1659025007.0, 37.5], [1659025007.0, 37.5], [1659025008.0, 41.1], [1659025008.0, 41.1], [1659025009.0, 44.4], [1659025009.0, 44.4], [1659025009.0, 44.4], [1659025010.0, 47.1], [1659025010.0, 47.1], [1659025011.0, 49.9], [1659025011.0, 49.9], [1659025011.0, 49.9], [1659025012.0, 51.0], [1659025012.0, 51.0], [1659025013.0, 51.3], [1659025013.0, 51.3], [1659025013.0, 51.3], [1659025014.0, 51.3], [1659025014.0, 51.3], [1659025015.0, 50.8], [1659025015.0, 50.8], [1659025015.0, 50.8], [1659025016.0, 50.2], [1659025016.0, 50.2], [1659025017.0, 50.2], [1659025017.0, 49.1], [1659025017.0, 49.1], [1659025018.0, 46.9], [1659025018.0, 46.9], [1659025018.0, 46.9], [1659025019.0, 45.1], [1659025019.0, 45.1], [1659025020.0, 43.4], [1659025020.0, 43.4], [1659025020.0, 43.4], [1659025021.0, 41.5], [1659025021.0, 41.5], [1659025022.0, 39.9], [1659025022.0, 39.9], [1659025022.0, 39.9], [1659025023.0, 37.4], [1659025023.0, 37.4], [1659025024.0, 34.9], [1659025024.0, 34.9], [1659025024.0, 34.9], [1659025025.0, 30.1], [1659025025.0, 30.1], [1659025026.0, 24.9], [1659025026.0, 24.9], [1659025026.0, 24.9], [1659025027.0, 18.8], [1659025027.0, 18.8], [1659025028.0, 12.7], [1659025028.0, 12.7], [1659025028.0, 12.7], [1659025029.0, 8.7], [1659025029.0, 8.7], [1659025030.0, 7.6], [1659025030.0, 7.6], [1659025030.0, 7.6], [1659025031.0, 11.8], [1659025031.0, 11.8], [1659025031.0, 11.8], [1659025032.0, 14.3], [1659025032.0, 14.3], [1659025033.0, 17.7], [1659025033.0, 17.7], [1659025033.0, 17.7], [1659025034.0, 21.3], [1659025034.0, 21.3], [1659025035.0, 24.8], [1659025035.0, 24.8], [1659025035.0, 24.8], [1659025036.0, 28.0], [1659025036.0, 28.0], [1659025037.0, 29.7], [1659025037.0, 29.7], [1659025037.0, 29.7], [1659025038.0, 29.8], [1659025038.0, 29.8], [1659025039.0, 28.9], [1659025039.0, 28.9], [1659025039.0, 28.9], [1659025040.0, 29.5], [1659025040.0, 29.5], [1659025041.0, 29.5], [1659025041.0, 31.1], [1659025041.0, 31.1], [1659025042.0, 32.3], [1659025042.0, 32.3], [1659025043.0, 32.3], [1659025043.0, 33.1], [1659025043.0, 33.1], [1659025044.0, 34.2], [1659025044.0, 34.2], [1659025044.0, 34.2], [1659025045.0, 34.1], [1659025045.0, 34.1], [1659025046.0, 33.7], [1659025046.0, 33.7], [1659025046.0, 33.7], [1659025047.0, 34.2], [1659025047.0, 34.2], [1659025048.0, 31.6], [1659025048.0, 31.6], [1659025048.0, 31.6], [1659025049.0, 27.7], [1659025049.0, 27.7], [1659025050.0, 27.7], [1659025050.0, 25.9], [1659025050.0, 25.9], [1659025051.0, 26.3], [1659025051.0, 26.3], [1659025052.0, 26.3], [1659025052.0, 28.3], [1659025052.0, 28.3], [1659025053.0, 29.4], [1659025053.0, 29.4], [1659025054.0, 29.4], [1659025054.0, 28.7], [1659025054.0, 28.7], [1659025055.0, 28.6], [1659025055.0, 28.6], [1659025056.0, 28.6], [1659025056.0, 29.4], [1659025056.0, 29.4], [1659025057.0, 30.6], [1659025057.0, 30.6], [1659025058.0, 30.6], [1659025058.0, 30.9], [1659025058.0, 30.9], [1659025059.0, 30.5], [1659025059.0, 30.5], [1659025060.0, 30.5], [1659025060.0, 29.1], [1659025060.0, 29.1], [1659025061.0, 27.2], [1659025061.0, 27.2], [1659025062.0, 27.2], [1659025062.0, 24.8], [1659025062.0, 24.8], [1659025063.0, 22.0], [1659025063.0, 22.0], [1659025064.0, 22.0], [1659025064.0, 18.0], [1659025064.0, 18.0], [1659025065.0, 14.6], [1659025065.0, 14.6], [1659025066.0, 14.6], [1659025066.0, 11.2], [1659025066.0, 11.2], [1659025067.0, 8.8], [1659025067.0, 8.8], [1659025068.0, 8.8]]

[1659024170.0, 0.0]
In [8]:
map = folium.Map(location=[locations.Latitude.mean(), locations.Longitude.mean()], zoom_start=13)
map
Out[8]:
Make this Notebook Trusted to load map: File -> Trust Notebook
In [9]:
#starting point
folium.Marker(locationslist[1], popup=locationdetailslist[1],icon=folium.Icon(color="darkpurple", icon_color='white', icon="twitter", prefix='fa')).add_to(map)
folium.PolyLine(locations = [locationslist[1], locationslist[2]],
                line_opacity = 0.2).add_to(map)

map
Out[9]:
Make this Notebook Trusted to load map: File -> Trust Notebook
In [10]:
#middle point
folium.CircleMarker(locationslist[100], radius=1, popup=locationdetailslist[100]).add_to(map)
#folium.PolyLine(locations = [locationslist[100], locationslist[101]],
#            line_opacity = 0.2).add_to(map)
map
Out[10]:
Make this Notebook Trusted to load map: File -> Trust Notebook
In [11]:
map = folium.Map(location=[locations.Latitude.mean(), locations.Longitude.mean()], zoom_start=13)
map
Out[11]:
Make this Notebook Trusted to load map: File -> Trust Notebook
In [12]:
map = folium.Map(location=[locations.Latitude.mean(), locations.Longitude.mean()], zoom_start=13)

#starting point
folium.Marker(locationslist[1], popup=locationdetailslist[1],icon=folium.Icon(color="green", icon_color='white', icon="flag-checkered", prefix='fa')).add_to(map)
folium.PolyLine(locations = [locationslist[1], locationslist[2]],
                line_opacity = 0.2).add_to(map)

#middle points
for point in range(1, len(locationslist)-1):
    folium.CircleMarker(locationslist[point], radius=1, popup=locationdetailslist[point]).add_to(map)
    folium.PolyLine(locations = [locationslist[point], locationslist[point+1]],
                line_opacity = 0.2).add_to(map)

#Finish line    
folium.Marker(locationslist[len(locationslist)-1], popup=locationdetailslist[len(locationslist)-1],icon=folium.Icon(color="red", icon_color='white', icon="flag-checkered", prefix='fa')).add_to(map)
folium.PolyLine(locations = [locationslist[len(locationslist)-2], locationslist[len(locationslist)-1]],
                line_opacity = 0.2).add_to(map)
map
Out[12]:
Make this Notebook Trusted to load map: File -> Trust Notebook
In [13]:
help(folium.Icon)
Help on class Icon in module folium.map:

class Icon(branca.element.MacroElement)
 |  Icon(color='blue', icon_color='white', icon='info-sign', angle=0, prefix='glyphicon', **kwargs)
 |  
 |  Creates an Icon object that will be rendered
 |  using Leaflet.awesome-markers.
 |  
 |  Parameters
 |  ----------
 |  color : str, default 'blue'
 |      The color of the marker. You can use:
 |  
 |          ['red', 'blue', 'green', 'purple', 'orange', 'darkred',
 |           'lightred', 'beige', 'darkblue', 'darkgreen', 'cadetblue',
 |           'darkpurple', 'white', 'pink', 'lightblue', 'lightgreen',
 |           'gray', 'black', 'lightgray']
 |  
 |  icon_color : str, default 'white'
 |      The color of the drawing on the marker. You can use colors above,
 |      or an html color code.
 |  icon : str, default 'info-sign'
 |      The name of the marker sign.
 |      See Font-Awesome website to choose yours.
 |      Warning : depending on the icon you choose you may need to adapt
 |      the `prefix` as well.
 |  angle : int, default 0
 |      The icon will be rotated by this amount of degrees.
 |  prefix : str, default 'glyphicon'
 |      The prefix states the source of the icon. 'fa' for font-awesome or
 |      'glyphicon' for bootstrap 3.
 |  
 |  https://github.com/lvoogdt/Leaflet.awesome-markers
 |  
 |  Method resolution order:
 |      Icon
 |      branca.element.MacroElement
 |      branca.element.Element
 |      builtins.object
 |  
 |  Methods defined here:
 |  
 |  __init__(self, color='blue', icon_color='white', icon='info-sign', angle=0, prefix='glyphicon', **kwargs)
 |      Initialize self.  See help(type(self)) for accurate signature.
 |  
 |  ----------------------------------------------------------------------
 |  Data and other attributes defined here:
 |  
 |  color_options = {'beige', 'black', 'blue', 'cadetblue', 'darkblue', 'd...
 |  
 |  ----------------------------------------------------------------------
 |  Methods inherited from branca.element.MacroElement:
 |  
 |  render(self, **kwargs)
 |      Renders the HTML representation of the element.
 |  
 |  ----------------------------------------------------------------------
 |  Methods inherited from branca.element.Element:
 |  
 |  add_child(self, child, name=None, index=None)
 |      Add a child.
 |  
 |  add_children(self, child, name=None, index=None)
 |      Add a child.
 |  
 |  add_to(self, parent, name=None, index=None)
 |      Add element to a parent.
 |  
 |  get_bounds(self)
 |      Computes the bounds of the object and all it's children
 |      in the form [[lat_min, lon_min], [lat_max, lon_max]].
 |  
 |  get_name(self)
 |      Returns a string representation of the object.
 |      This string has to be unique and to be a python and
 |      javascript-compatible
 |      variable name.
 |  
 |  get_root(self)
 |      Returns the root of the elements tree.
 |  
 |  save(self, outfile, close_file=True, **kwargs)
 |      Saves an Element into a file.
 |      
 |      Parameters
 |      ----------
 |      outfile : str or file object
 |          The file (or filename) where you want to output the html.
 |      close_file : bool, default True
 |          Whether the file has to be closed after write.
 |  
 |  to_dict(self, depth=-1, ordered=True, **kwargs)
 |      Returns a dict representation of the object.
 |  
 |  to_json(self, depth=-1, **kwargs)
 |      Returns a JSON representation of the object.
 |  
 |  ----------------------------------------------------------------------
 |  Data descriptors inherited from branca.element.Element:
 |  
 |  __dict__
 |      dictionary for instance variables (if defined)
 |  
 |  __weakref__
 |      list of weak references to the object (if defined)

In [ ]:
 
In [14]:
help(folium.CircleMarker)
Help on class CircleMarker in module folium.vector_layers:

class CircleMarker(folium.map.Marker)
 |  CircleMarker(location=None, radius=10, popup=None, tooltip=None, **kwargs)
 |  
 |  A circle of a fixed size with radius specified in pixels.
 |  
 |  See :func:`folium.vector_layers.path_options` for the `Path` options.
 |  
 |  Parameters
 |  ----------
 |  location: tuple[float, float]
 |      Latitude and Longitude pair (Northing, Easting)
 |  popup: string or folium.Popup, default None
 |      Input text or visualization for object displayed when clicking.
 |  tooltip: str or folium.Tooltip, default None
 |      Display a text when hovering over the object.
 |  radius: float, default 10
 |      Radius of the circle marker, in pixels.
 |  **kwargs
 |      Other valid (possibly inherited) options. See:
 |      https://leafletjs.com/reference-1.6.0.html#circlemarker
 |  
 |  Method resolution order:
 |      CircleMarker
 |      folium.map.Marker
 |      branca.element.MacroElement
 |      branca.element.Element
 |      builtins.object
 |  
 |  Methods defined here:
 |  
 |  __init__(self, location=None, radius=10, popup=None, tooltip=None, **kwargs)
 |      Initialize self.  See help(type(self)) for accurate signature.
 |  
 |  ----------------------------------------------------------------------
 |  Methods inherited from folium.map.Marker:
 |  
 |  render(self)
 |      Renders the HTML representation of the element.
 |  
 |  ----------------------------------------------------------------------
 |  Methods inherited from branca.element.Element:
 |  
 |  add_child(self, child, name=None, index=None)
 |      Add a child.
 |  
 |  add_children(self, child, name=None, index=None)
 |      Add a child.
 |  
 |  add_to(self, parent, name=None, index=None)
 |      Add element to a parent.
 |  
 |  get_bounds(self)
 |      Computes the bounds of the object and all it's children
 |      in the form [[lat_min, lon_min], [lat_max, lon_max]].
 |  
 |  get_name(self)
 |      Returns a string representation of the object.
 |      This string has to be unique and to be a python and
 |      javascript-compatible
 |      variable name.
 |  
 |  get_root(self)
 |      Returns the root of the elements tree.
 |  
 |  save(self, outfile, close_file=True, **kwargs)
 |      Saves an Element into a file.
 |      
 |      Parameters
 |      ----------
 |      outfile : str or file object
 |          The file (or filename) where you want to output the html.
 |      close_file : bool, default True
 |          Whether the file has to be closed after write.
 |  
 |  to_dict(self, depth=-1, ordered=True, **kwargs)
 |      Returns a dict representation of the object.
 |  
 |  to_json(self, depth=-1, **kwargs)
 |      Returns a JSON representation of the object.
 |  
 |  ----------------------------------------------------------------------
 |  Data descriptors inherited from branca.element.Element:
 |  
 |  __dict__
 |      dictionary for instance variables (if defined)
 |  
 |  __weakref__
 |      list of weak references to the object (if defined)

In [15]:
#OSRM
In [16]:
print(len(locationslist))
print(locationslist[0])
print(locationslist[2279])
2280
[9.0514168, 7.4914232]
[9.068983, 7.4461538]
In [ ]:
http://router.project-osrm.org/route/v1/driving/13.388860,52.517037;13.397634,52.529407;13.428555,52.523219?overview=false
In [19]:
url = "http://router.project-osrm.org/route/v1/driving/9.0514168,7.4914232;9.068983,7.4461538"
r = requests.get(url)
res = r.json()
res
Out[19]:
{'code': 'Ok',
 'routes': [{'geometry': 's~ul@u{gv@dPnBhU|FtZxKf^|EwCuR|@gAvEEeD}IeG_H{FoYpAmBfUeGrVq@hSdA`q@uk@fMkElGmFpJxC`d@|FnKrC',
   'legs': [{'steps': [],
     'summary': '',
     'weight': 1082,
     'duration': 1082,
     'distance': 7416}],
   'weight_name': 'routability',
   'weight': 1082,
   'duration': 1082,
   'distance': 7416}],
 'waypoints': [{'hint': '45nfgtAz5oNJAAAAdQAAAFkJAACiAgAAkhZKQn7SoEI9pM5E88_oQ0kAAAB1AAAAWQkAAKICAACZGgAA8jGKAMBLcgAZHYoAX09yAA0A3wsm41_Y',
   'distance': 597.956307,
   'name': '',
   'location': [9.056754, 7.490496]},
  {'hint': 'D5zfghU05oMAAAAAaQAAAJ8DAAD8BQAAAAAAAGygkEIDQyBE3EGERAAAAABpAAAAnwMAAPwFAACZGgAA3mmKAGmacQC3YYoAip5xAAIA_wEm41_Y',
   'distance': 258.347153,
   'name': '',
   'location': [9.07107, 7.445097]}]}
In [ ]:
'''
The trip has distance of 7416 meters and a travel time of 1082 seconds

'''
In [36]:
polyline.decode('s~ul@u{gv@dPnBhU|FtZxKf^|EwCuR|@gAvEEeD}IeG_H{FoYpAmBfUeGrVq@hSdA`q@uk@fMkElGmFpJxC`d@|FnKrC', precision=5, geojson=True)
Out[36]:
[(9.05675, 7.4905),
 (9.05619, 7.48775),
 (9.05492, 7.48418),
 (9.05287, 7.47975),
 (9.05176, 7.47475),
 (9.05491, 7.47551),
 (9.05527, 7.4752),
 (9.0553, 7.47412),
 (9.05705, 7.47495),
 (9.05849, 7.47626),
 (9.06273, 7.47752),
 (9.06328, 7.47711),
 (9.06459, 7.47355),
 (9.06484, 7.46977),
 (9.06449, 7.46652),
 (9.07164, 7.45851),
 (9.07266, 7.45623),
 (9.07385, 7.45488),
 (9.07308, 7.45303),
 (9.07181, 7.4471),
 (9.07107, 7.4451)]
In [45]:
def get_route(pickup_lat, pickup_lon, dropoff_lat, dropoff_lon):
    
    loc = "{},{};{},{}".format(pickup_lat, pickup_lon, dropoff_lat, dropoff_lon)
    url = "http://router.project-osrm.org/route/v1/driving/"
    r = requests.get(url + loc) 
    if r.status_code!= 200:
        return {}
  
    res = r.json()   
    routes = polyline.decode(res['routes'][0]['geometry'], precision=5, geojson=True)
    start_point = [res['waypoints'][0]['location'][0], res['waypoints'][0]['location'][1]]
    end_point = [res['waypoints'][1]['location'][0], res['waypoints'][1]['location'][1]]

    distance = res['routes'][0]['distance']
    
    out = {'route':routes,
           'start_point':start_point,
           'end_point':end_point,
           'distance':distance
          }

    return out
In [46]:
pickup_lat, pickup_lon, dropoff_lat, dropoff_lon = 9.0514168,7.4914232,9.068983,7.4461538
test_route = get_route(pickup_lat, pickup_lon, dropoff_lat, dropoff_lon)
test_route
Out[46]:
{'route': [(9.05675, 7.4905),
  (9.05619, 7.48775),
  (9.05492, 7.48418),
  (9.05287, 7.47975),
  (9.05176, 7.47475),
  (9.05491, 7.47551),
  (9.05527, 7.4752),
  (9.0553, 7.47412),
  (9.05705, 7.47495),
  (9.05849, 7.47626),
  (9.06273, 7.47752),
  (9.06328, 7.47711),
  (9.06459, 7.47355),
  (9.06484, 7.46977),
  (9.06449, 7.46652),
  (9.07164, 7.45851),
  (9.07266, 7.45623),
  (9.07385, 7.45488),
  (9.07308, 7.45303),
  (9.07181, 7.4471),
  (9.07107, 7.4451)],
 'start_point': [9.056754, 7.490496],
 'end_point': [9.07107, 7.445097],
 'distance': 7416}
In [65]:
def get_map(route):
    
    m = folium.Map(location=[(route['start_point'][0] + route['end_point'][0])/2, 
                             (route['start_point'][1] + route['end_point'][1])/2], 
                   zoom_start=13)

    folium.PolyLine(
        route['route'],
        weight=8,
        color='black',
        opacity=0.6
    ).add_to(m)

    folium.Marker(
        location=route['start_point'],
        icon=folium.Icon(color="green", icon_color='white', icon="flag-checkered", prefix='fa')
    ).add_to(m)

    folium.Marker(
        location=route['end_point'],
        icon=folium.Icon(color="red", icon_color='white', icon="flag-checkered", prefix='fa')
    ).add_to(m)

    return m
In [66]:
# Route rendered using OSRM
get_map(test_route)
Out[66]:
Make this Notebook Trusted to load map: File -> Trust Notebook
In [32]:
# Route rendered by ploting all the coordinates using folium
map
Out[32]:
Make this Notebook Trusted to load map: File -> Trust Notebook
In [33]:
help(polyline.decode)
Help on function decode in module polyline:

decode(expression, precision=5, geojson=False)
    Decode a polyline string into a set of coordinates.
    
    :param expression: Polyline string, e.g. 'u{~vFvyys@fS]'.
    :param precision: Precision of the encoded coordinates. Google Maps uses 5, OpenStreetMap uses 6.
        The default value is 5.
    :param geojson: Set output of tuples to (lon, lat), as per https://tools.ietf.org/html/rfc7946#section-3.1.1
    :return: List of coordinate tuples in (lat, lon) order, unless geojson is set to True.

In [ ]:
 
In [ ]: